Skip to content

Commit

Permalink
edit : 토큰 재발급 시 만료기간 설정 수정 (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
dlswns2480 authored Sep 10, 2024
1 parent 118c9fe commit fce2b67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class JwtTokenProvider(
throw ClientValidationException(AuthErrorCode.INVALID_TOKEN)
}

return generateToken(userId, jwtProperty.accessExpiryTime)
return generateToken(userId, jwtProperty.accessExpiryTime * TO_DAY)
}

override fun deleteRefreshToken(refreshTokenId: Long) {
Expand Down

0 comments on commit fce2b67

Please sign in to comment.