Skip to content

Commit

Permalink
[Feat] 토큰 만료시간 변경 (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
funnysunny08 authored May 8, 2024
1 parent 233eea0 commit 2067395
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/org/winey/server/service/auth/AuthService.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ public class AuthService {
private final GoalRepository goalRepository;


// private final Long TOKEN_EXPIRATION_TIME_ACCESS = 100 * 24 * 60 * 60 * 1000L;
private final Long TOKEN_EXPIRATION_TIME_ACCESS = 1 * 60 * 1000L;
private final Long TOKEN_EXPIRATION_TIME_ACCESS = 100 * 24 * 60 * 60 * 1000L;
private final Long TOKEN_EXPIRATION_TIME_REFRESH = 200 * 24 * 60 * 60 * 1000L;

private final NotiRepository notiRepository;
Expand Down

0 comments on commit 2067395

Please sign in to comment.