Skip to content

Commit

Permalink
AccessToken 유효기간 늘리기 (#239)
Browse files Browse the repository at this point in the history
extend token expiry
  • Loading branch information
sanggggg authored Mar 17, 2024
1 parent 51c279c commit d564179
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ class JWTTokenManager(
private val clock: Clock,
) : TokenManager {
companion object {
private val TOKEN_EXPIRATION = Duration.ofDays(30)
private val TOKEN_EXPIRATION = Duration.ofDays(365)
}

private val objectMapper = jacksonObjectMapper()

private val jwtAlgorithm = Algorithm.HMAC512(secret)
Expand Down

0 comments on commit d564179

Please sign in to comment.