Skip to content

Commit

Permalink
Merge pull request #323 from zeus6768/fix/logout
Browse files Browse the repository at this point in the history
로그아웃 후 쿠키가 삭제되지 않는 버그 픽스
  • Loading branch information
zeus6768 authored Aug 7, 2024
2 parents 2da4a90 + a5a9f90 commit f7c91bf
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ public void logout(HttpServletResponse response) {
ResponseCookie cookie = ResponseCookie.from(HttpHeaders.AUTHORIZATION, "")
.maxAge(0)
.path("/")
.sameSite("None")
.secure(true)
.httpOnly(true)
.build();
Expand Down

0 comments on commit f7c91bf

Please sign in to comment.