Skip to content

Commit

Permalink
🔨fix: AuthCommandServiceImpl수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yunseo02 authored Feb 9, 2025
1 parent a9fcf4b commit 254b292
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public AccessTokenResponse reissueToken(String oldRefreshToken, HttpServletRespo
.httpOnly(true)
.secure(true)
.sameSite("None")
.maxAge(10) // 7일
.maxAge(7 * 24 * 60 * 60) // 7일
.path("/")
.build();

Expand Down Expand Up @@ -100,7 +100,7 @@ public String processLoginSuccess(Member member, HttpServletResponse response) {
.httpOnly(true)
.secure(true)
.sameSite("None")
.maxAge(10) // 7일(7 * 24 * 60 * 60)
.maxAge(7 * 24 * 60 * 60) // 7일(7 * 24 * 60 * 60)
.path("/")
.build();

Expand Down

0 comments on commit 254b292

Please sign in to comment.