Skip to content

Commit

Permalink
chore: 토큰 시간 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
dooboocookie authored Nov 17, 2023
1 parent 47fb85a commit 574ea28
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

@Component
public class AuthTokenGenerator {

private static final long ACCESS_TOKEN_EXPIRE_TIME = 1000L * 20; // 20초
private static final long REFRESH_TOKEN_EXPIRE_TIME = 1000L * 60 * 1; // 1분
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 final JwtProvider jwtProvider;

Expand Down

0 comments on commit 574ea28

Please sign in to comment.