Skip to content

Commit 7e078e9

Browse files
authored
Merge pull request #268 from EATSTEAK/dev
v0.10.1
2 parents e3dcea3 + efa5371 commit 7e078e9

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lockerweb",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "SSU IT Collage Locker system.",
55
"private": true,
66
"scripts": {

packages/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "client",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"scripts": {
55
"dev": "cross-env VITE_BASE_URL=http://localhost:3000 vite dev --port 5002 --host 0.0.0.0",
66
"build": "vite build",

packages/client/src/components/molecule/login/DepartmentLockerStatus.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<h3><span class='text-primary-800'>{departmentStatus.departmentName}</span> 층별 예약 현황</h3>
1515
<div class='flex gap-1 mt-2 items-center'>
16-
<Tag class='bg-gray-200'>문의 사항</Tag>
16+
<Tag class='block shrink-0 bg-gray-200'>문의 사항</Tag>
1717
<p>{departmentStatus.contact}</p>
1818
</div>
1919

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "server",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "Backend Lambda script for lockerweb",
55
"license": "MIT",
66
"scripts": {

packages/server/src/auth/data.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ export const issueToken = async function (
5656
}),
5757
ExpressionAttributeValues: {
5858
':token': { S: token },
59-
':expiresOn': { N: `${expires}` }
59+
':expiresOn': { N: `${expires}` },
60+
...(id !== adminId && { ':true': { BOOL: true } })
6061
},
6162
ReturnValues: 'ALL_NEW'
6263
};

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@types/lockerweb",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"types": "index.d.ts",
55
"license": "MIT",
66
"dependencies": {

0 commit comments

Comments
 (0)