Skip to content

Commit

Permalink
fix: refresh token 유효기간 14일로 변경
Browse files Browse the repository at this point in the history
related to: #11
  • Loading branch information
heejjinkim committed Oct 18, 2024
1 parent d688dc7 commit 54da498
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
public class JwtTokenProvider {

private static final long ACCESS_TOKEN_DURATION = 1000 * 60 * 60L * 24 * 7; // TODO: 임시 7일
private static final long REFRESH_TOKEN_DURATION = 1000 * 60 * 60L * 24 * 7; // 7일
private static final long REFRESH_TOKEN_DURATION = 1000 * 60 * 60L * 24 * 14; // 14일

private final RedisUtil redisUtil;
private final SecretKey secretKey;
Expand Down

0 comments on commit 54da498

Please sign in to comment.