Skip to content

Commit

Permalink
chore: 액세스토큰 20초 리프레시토큰 1분
Browse files Browse the repository at this point in the history
  • Loading branch information
dooboocookie authored Nov 11, 2023
1 parent 9668543 commit a1b6d45
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
@Component
public class AuthTokenGenerator {

private static final long ACCESS_TOKEN_EXPIRE_TIME = 1000L * 60 * 60 * 24 * 30; // 30일
private static final long REFRESH_TOKEN_EXPIRE_TIME = 1000L * 60 * 60 * 24 * 30; // 30일
private static final long ACCESS_TOKEN_EXPIRE_TIME = 1000L * 20 // 20초
private static final long REFRESH_TOKEN_EXPIRE_TIME = 1000L * 60 * 1 // 1분

private final JwtProvider jwtProvider;

Expand Down

0 comments on commit a1b6d45

Please sign in to comment.