Skip to content

Commit

Permalink
fix: 토큰 만료기간을 2025년 12월로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
DongGeon0908 committed Jan 5, 2025
1 parent 34c1d4b commit 893be7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class AuthFacade(
private val txTemplates: TransactionTemplates,
) {
companion object {
private val TOKEN_EXPIRED_DATE = LocalDateTime.of(2024, 12, 29, 0, 0, 0)
private val TOKEN_EXPIRED_DATE = LocalDateTime.of(2025, 12, 29, 0, 0, 0)
}

suspend fun resolveAuthUser(token: AuthUserToken): AuthUser {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class OAuthFacade(
private val publisher: ApplicationEventPublisher,
) {
companion object {
private val TOKEN_EXPIRED_DATE = LocalDateTime.of(2024, 12, 29, 0, 0, 0)
private val TOKEN_EXPIRED_DATE = LocalDateTime.of(2025, 12, 29, 0, 0, 0)
}

private val logger = KotlinLogging.logger { }
Expand Down

0 comments on commit 893be7f

Please sign in to comment.