Skip to content

Commit

Permalink
Merge pull request #12 from Link-MIND/refactor/#11
Browse files Browse the repository at this point in the history
[Fix] 토큰 시간 변경
  • Loading branch information
mmihye authored Dec 31, 2023
2 parents 91761cd + 9e9e0f6 commit d75b693
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ public class AuthService {
private final UserRepository userRepository;


private final Long TOKEN_EXPIRATION_TIME_ACCESS = 100 * 24 * 60 * 60 * 1000L;
private final Long TOKEN_EXPIRATION_TIME_REFRESH = 200 * 24 * 60 * 60 * 1000L;
private final Long TOKEN_EXPIRATION_TIME_ACCESS = 1 * 60 * 1000L;
private final Long TOKEN_EXPIRATION_TIME_REFRESH = 3 * 60 * 1000L;


@Transactional
public SignInResponseDto signIn(String socialAccessToken, SignInRequestDto requestDto) {
Expand Down

0 comments on commit d75b693

Please sign in to comment.