Skip to content

Commit

Permalink
Merge pull request #317 from zeus6768/fix/signup
Browse files Browse the repository at this point in the history
fix(service): cookie 설정 추가
  • Loading branch information
zeus6768 authored Aug 7, 2024
2 parents f3f0b55 + d45030b commit a9ed73c
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public void login(@Valid @RequestBody LoginRequest request, HttpServletResponse
ResponseCookie cookie = ResponseCookie.from(HttpHeaders.AUTHORIZATION, basicAuth)
.maxAge(-1)
.path("/")
.sameSite("None")
.secure(true)
.httpOnly(true)
.build();
Expand Down

0 comments on commit a9ed73c

Please sign in to comment.