Skip to content

Commit

Permalink
Merge pull request #579 from woowacourse-teams/hotfix/token
Browse files Browse the repository at this point in the history
hotfix: 토큰 유효기간 수정
  • Loading branch information
dooboocookie authored Nov 17, 2023
2 parents 83cfbe7 + 2672228 commit 123d7d7
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 * 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 123d7d7

Please sign in to comment.