Skip to content

Commit

Permalink
chore: access token 기간 1주일로 연장
Browse files Browse the repository at this point in the history
  • Loading branch information
choiyounji committed Nov 22, 2023
1 parent 3b1a819 commit 0c9b365
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/MARKETFUBY/Member/service/MemberService.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class MemberService {
private final RefreshTokenService refreshTokenService;

// AccessToken 만료 시간을 1시간으로 설정
private Long AccessExpireTimeMs = 1000 * 60 * 60L;
private Long AccessExpireTimeMs = 7 * 24 * 1000 * 60 * 60L;
// RefreshToken 만료 시간을 7일로 설정
private Long RefreshExpireTimeMs = 7 * 24 * 1000 * 60 * 60L;

Expand Down

0 comments on commit 0c9b365

Please sign in to comment.