Skip to content

Commit

Permalink
Merge pull request #32 from DDD-Community/fix/30-issue_refresh_token
Browse files Browse the repository at this point in the history
chore: reduce refresh token expire time
  • Loading branch information
minaamim authored Dec 13, 2023
2 parents 79de52a + d2ed421 commit ea922ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class JwtTokenProvider {
private final Key key;
private static final String BEARER_TYPE = "Bearer ";
private static final long ACCESS_TOKEN_EXPIRE_TIME = 1000 * 60 * 30; // 30분
private static final long REFRESH_TOKEN_EXPIRE_TIME = 1000 * 60 * 60 * 24 * 30; // 30일
private static final long REFRESH_TOKEN_EXPIRE_TIME = 1000 * 60 * 60 * 24 * 14; // 14일
private static final long EXPIRED_TIME = 1L;
private final RedisTemplate<String, Object> redisTemplate;

Expand Down

0 comments on commit ea922ce

Please sign in to comment.