Skip to content

Commit

Permalink
[FIX] 토큰 만료시간 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
unanchoi committed Jan 15, 2024
1 parent 767c5ec commit 213a10a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class AuthService {
private final JwtTokenProvider jwtTokenProvider;

private static final String AUTHORIZATION_CODE = "authorization_code";
private static final Long ACCESS_TOKEN_EXPIRATION = 1000L * 60 * 60 * 2; // 2시간
private static final Long ACCESS_TOKEN_EXPIRATION = 1000L * 60 * 60 * 2 * 12; // 24시간
private static final Long REFRESH_TOKEN_EXPIRATION = 1000L * 60 * 60 * 24 * 14; // 2주

@Transactional
Expand Down

0 comments on commit 213a10a

Please sign in to comment.