Skip to content

Commit

Permalink
Merge pull request #93 from Link-MIND/refactor/#92
Browse files Browse the repository at this point in the history
[#92] refactor: 토큰 시간 변경
  • Loading branch information
sss4920 committed Jan 15, 2024
2 parents 0c64448 + 64d497d commit 51dc270
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public class AuthService {
private final SlackApi slackApi;


private final Long TOKEN_EXPIRATION_TIME_ACCESS = 1 * 60 * 1000L; //1분
private final Long TOKEN_EXPIRATION_TIME_REFRESH = 3 * 60 * 1000L; //3분
private final Long TOKEN_EXPIRATION_TIME_ACCESS = 60*60 * 60 * 1000L; //1분
private final Long TOKEN_EXPIRATION_TIME_REFRESH = 3*60*60 * 60 * 1000L; //3분
@Value("${static-image.root}")
private String BASIC_ROOT;

Expand Down

0 comments on commit 51dc270

Please sign in to comment.