Skip to content

Commit

Permalink
Merge pull request #335 from catchroom/develop
Browse files Browse the repository at this point in the history
Refact : 토큰 시간 수정
  • Loading branch information
Parkgeonmoo authored Jan 26, 2024
2 parents efb7843 + 580acf2 commit d5beb77
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public class MeJWTService {
@Value("${JWT_TOKEN_SECRET_KEY}")
private String secretKey;

private final long accessTokenValidTime = 30 * 1000L; // access토큰의 유효시간 (30분)
/*private final long accessTokenValidTime = 30 * 60* 1000L; // access토큰의 유효시간 (30분)*/

private final long accessTokenValidTime = 30 * 60* 1000L; // access토큰의 유효시간 (30분)
private final long refreshTokenValidTime = 3000 * 60 * 1000L; //refresh 토큰의 유효시간 (3000분)


Expand Down

0 comments on commit d5beb77

Please sign in to comment.