Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Commit

Permalink
fix: increase access-token expire time
Browse files Browse the repository at this point in the history
  • Loading branch information
jspark2000 committed Aug 25, 2024
1 parent 2c2325d commit 746704a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/libs/constants/src/time.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const SECONDS_PER_HOUR = 60 * SECONDS_PER_MINUTE
const SECONDS_PER_DAY = 24 * SECONDS_PER_HOUR

/** JWT Token Expiration Settings */
export const ACCESS_TOKEN_EXPIRE_TIME = 30 * SECONDS_PER_MINUTE
export const ACCESS_TOKEN_EXPIRE_TIME = SECONDS_PER_HOUR
export const REFRESH_TOKEN_EXPIRE_TIME = SECONDS_PER_DAY
export const REFRESH_TOKEN_COOKIE_OPTIONS = {
maxAge: 1000 * SECONDS_PER_DAY,
Expand Down

0 comments on commit 746704a

Please sign in to comment.