Skip to content

Commit

Permalink
fix: 프론트 테스트용 token 임시 연장
Browse files Browse the repository at this point in the history
  • Loading branch information
kikingki committed Sep 23, 2024
1 parent 88d9883 commit c3a1d6c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@Getter
@AllArgsConstructor
public enum JwtTokenExpiration {
ACCESS_TOKEN_EXPIRED_TIME("1시간", 1000L * 60 * 60),
ACCESS_TOKEN_EXPIRED_TIME("1시간", 1000L * 60 * 60 * 1000), // FIXME: 테스트용 임시 연장
REFRESH_TOKEN_EXPIRATION_TIME("2주", 1000L * 60 * 60 * 24 * 14);

private final String description;
Expand Down

0 comments on commit c3a1d6c

Please sign in to comment.