From 8233db2bca1b31f6d14297f362fadc7dee7cd8ab Mon Sep 17 00:00:00 2001 From: Sunny Date: Wed, 8 May 2024 19:07:00 +0900 Subject: [PATCH] =?UTF-8?q?[Feat]=20=ED=86=A0=ED=81=B0=20=EB=A7=8C?= =?UTF-8?q?=EB=A3=8C=EC=8B=9C=EA=B0=84=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/org/winey/server/service/auth/AuthService.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 0dd6cdd..99c5ed5 100644 --- a/src/main/java/org/winey/server/service/auth/AuthService.java +++ b/src/main/java/org/winey/server/service/auth/AuthService.java @@ -37,7 +37,8 @@ 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 = 100 * 24 * 60 * 60 * 1000L; + private final Long TOKEN_EXPIRATION_TIME_ACCESS = 1 * 60 * 1000L; private final Long TOKEN_EXPIRATION_TIME_REFRESH = 200 * 24 * 60 * 60 * 1000L; private final NotiRepository notiRepository;