Skip to content

Commit

Permalink
feat: 게스트 닉네임 만료시간 2H [CD-511]
Browse files Browse the repository at this point in the history
  • Loading branch information
ddubbu-dev committed Dec 6, 2024
1 parent 4035dff commit fbf17ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/jwt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const generateAccessToken = ({
isGuest: boolean
}) => {
return jwt.sign({ userId, nickName, isGuest }, JWT_SECRET, {
expiresIn: '24h',
expiresIn: '2h',
})
}

Expand Down

0 comments on commit fbf17ec

Please sign in to comment.