diff --git a/src/main/java/org/winey/server/service/auth/AuthService.java b/src/main/java/org/winey/server/service/auth/AuthService.java index 802083f..a262815 100644 --- a/src/main/java/org/winey/server/service/auth/AuthService.java +++ b/src/main/java/org/winey/server/service/auth/AuthService.java @@ -35,8 +35,8 @@ public class AuthService { private final UserRepository userRepository; - private final Long TOKEN_EXPIRATION_TIME_ACCESS = 3 * 60 * 1000L; - private final Long TOKEN_EXPIRATION_TIME_REFRESH = 5 * 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 GoalRepository goalRepository; private final FeedRepository feedRepository;