Skip to content

Commit

Permalink
test: 액세스 토큰 시간 1시간으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
tfer2442 committed Dec 2, 2024
1 parent f0367dc commit 4da09ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public final class LoginConstants {
public static final String ROLE_CLAIM = "role";
public static final String CATEGORY_CLAIM = "category";

public static final long ACCESS_TOKEN_EXPIRATION_TIME_MS = 60*1000; // 1 hour
public static final long ACCESS_TOKEN_EXPIRATION_TIME_MS = 60*60*1000; // 1 hour
public static final long REFRESH_TOKEN_EXPIRATION_TIME_MS = 86400*1000; // 1 day
public static final long REFRESH_TOKEN_EXPIRATION_TIME_S = 86400; // 1day
}

0 comments on commit 4da09ab

Please sign in to comment.