Skip to content

Commit

Permalink
refactor: 오타 수정
Browse files Browse the repository at this point in the history
related to: #11
  • Loading branch information
heejjinkim committed Sep 7, 2024
1 parent 5825446 commit 647493e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
@Component
public class JwtTokenProvider {

private static final long ACCESS_TOKEN_DURATION = 1000 * 60 * 60L * 24 * 7; // 1일
private static final long ACCESS_TOKEN_DURATION = 1000 * 60 * 60L * 24; // 1일
private static final long REFRESH_TOKEN_DURATION = 1000 * 60 * 60L * 24 * 7; // 7일
private static final String AUTHORITIES_KEY = "auth";
private final RedisUtil redisUtil;
Expand Down

0 comments on commit 647493e

Please sign in to comment.