Skip to content

Commit

Permalink
Merge pull request #37 from Mojacknong/feature_36/액세스-토큰-기한-수정
Browse files Browse the repository at this point in the history
[fix] 유저 액세스 토큰 기한 수정
  • Loading branch information
MinchoGreenT authored Nov 21, 2023
2 parents d67d072 + 32d26b1 commit c010e44
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 c010e44

Please sign in to comment.