Skip to content

Commit

Permalink
[backend] Extended expiration of access token (#306)
Browse files Browse the repository at this point in the history
  • Loading branch information
lim396 authored Mar 7, 2024
1 parent 8fbacb0 commit 13f8e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/auth/auth.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const jwtConstants = {
JwtModule.register({
privateKey: jwtConstants.privateKey,
signOptions: {
expiresIn: '30m',
expiresIn: '3h',
algorithm: 'RS256',
},
verifyOptions: {
Expand Down

0 comments on commit 13f8e71

Please sign in to comment.