Skip to content

Commit

Permalink
Merge pull request #108 from Crazy-Cow/feature/CD-511
Browse files Browse the repository at this point in the history
feat: 게스트 닉네임 만료시간 2H [CD-511]
  • Loading branch information
ddubbu-dev authored Dec 8, 2024
2 parents 31187eb + fbf17ec commit 3688104
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 3688104

Please sign in to comment.