Skip to content

Commit

Permalink
[fix] 유저 액세스 토큰 기한 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
MinchoGreenT committed Nov 21, 2023
1 parent 5e91ee8 commit 3ef3694
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class JwtTokenProvider {
private String secretKey;


private final long accessTokenTime = 30L * 1000 * 100; // 1달 토큰 유효
private final long accessTokenTime = 365L * 24 * 60 * 60 * 1000; // 1달 토큰 유효


private final long refreshTokenTime = 30L * 1000 * 2 * 1000; // 1달 토큰 유효
Expand Down

0 comments on commit 3ef3694

Please sign in to comment.