Skip to content

Commit

Permalink
Merge pull request #31 from GDSC-snowflowerthon/fix/openAPI-13
Browse files Browse the repository at this point in the history
[fix] 토큰 시간 연장
  • Loading branch information
yunji118 authored Jan 11, 2024
2 parents 5c356a2 + c7a4564 commit e20ae09
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
public class JwtTokenProvider {
private static final String AUTHORITIES_KEY = "auth";
private static final String BEARER_TYPE = "BEARER";
private final Long ACCESS_TOKEN_EXPIRE_TIME = 10000L * 60 * 60;
private final Long REFRESH_TOKEN_EXPIRE_TIME = 10000L * 60 * 60 * 24 * 7;
private final Long ACCESS_TOKEN_EXPIRE_TIME = 1000L * 60 * 60 * 24 * 3;
private final Long REFRESH_TOKEN_EXPIRE_TIME = 1000L * 60 * 60 * 24 * 7;

private final CustomUserDetailsService customUserDetailsService;

Expand Down

0 comments on commit e20ae09

Please sign in to comment.