Skip to content

Commit

Permalink
fix: reduce access_token expiry
Browse files Browse the repository at this point in the history
  • Loading branch information
csuvajit committed Oct 26, 2024
1 parent 4b672b7 commit 873f219
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/access-token.helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const getAccessToken = async () => {
},
process.env.JWT_SECRET_V2 as string,
{
expiresIn: '100m'
expiresIn: '30m'
}
);

Expand Down

0 comments on commit 873f219

Please sign in to comment.