Skip to content

Commit

Permalink
Merge release or hotfix into dev_backend
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Nov 17, 2023
2 parents 9a036a1 + 574ea28 commit fb46dd6
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 fb46dd6

Please sign in to comment.