Skip to content

Commit

Permalink
hotfix: 클라이언트 요청에 따라 MVP 배포 전까지 토큰 만료 시간 매우 길게 임시 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
great-park committed Sep 5, 2023
1 parent 4085c93 commit dfd0109
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@ public class TokenProvider {

private Key secretKey;

// todo : 만료 시간 변경
private final long ACCESS_EXPIRED_IN = 1000L * 3600;
private final long REFRESH_EXPIRED_IN = 1000L * 3600 * 3;
// private final long ACCESS_EXPIRED_IN = 1000L * 3600;
// private final long REFRESH_EXPIRED_IN = 1000L * 3600 * 3;
// todo : 클라이언트 요청에 따라 MVP 배포 전까지 토큰 만료 시간 매우 길게 임시 설정
private final long ACCESS_EXPIRED_IN = 1000L * 3600 * 24 * 365;
private final long REFRESH_EXPIRED_IN = 1000L * 3600 * 24 * 365;

private final CustomUserDetailsService userDetailsService;

Expand Down

0 comments on commit dfd0109

Please sign in to comment.