Skip to content

Commit

Permalink
[ifx[ 시간 표기 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
elive7 committed Jun 2, 2024
1 parent a7a0450 commit 110788f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class JwtTokenProvider {
private static final String ROLES = "roles";

private static final Long ACCESS_TOKEN_EXPIRATION_TIME = 5 * 60 * 1000L; // 5 minutes
private static final Long REFRESH_TOKEN_EXPIRATION_TIME = 14 * 24 * 60 * 1000L; // 14 days
private static final Long REFRESH_TOKEN_EXPIRATION_TIME = 24 * 60 * 60 * 1000L * 14; // 14 days

@Value("${jwt.secret}")
private String JWT_SECRET;
Expand Down

0 comments on commit 110788f

Please sign in to comment.