Skip to content

Commit

Permalink
Merge pull request #201 from Team-MindWay/fix/200-token-issue-after-e…
Browse files Browse the repository at this point in the history
…xpired-fix

🔀 :: Token 유효시간 수정
  • Loading branch information
Umjiseung authored Aug 13, 2024
2 parents 4e4045e + c75e357 commit 257c193
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
public class JwtProvider {
private static final String AUTHORITIES_KEY = "auth";
private static final String BEARER_TYPE = "Bearer ";
private static final long ACCESS_TOKEN_TIME = 1000 * 60 * 30L;
private static final long REFRESH_TOKEN_TIME = 1000 * 60 * 60 * 24 * 7L;
private static final long ACCESS_TOKEN_TIME = 60L * 30 * 4;
private static final long REFRESH_TOKEN_TIME = 60L * 60 * 24 * 7;

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

0 comments on commit 257c193

Please sign in to comment.