Skip to content

Commit

Permalink
refactor: cookie 설정 배포 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
f1v3-dev committed Aug 19, 2024
1 parent 16bdd3a commit 55b36a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private ResponseCookie createCookie(String name, String value, int maxAge) {
return ResponseCookie.from(name, value)
.secure(true)
.sameSite("None")
.httpOnly(true)
// .httpOnly(true)
.path("/")
.maxAge(maxAge)
.build();
Expand Down

0 comments on commit 55b36a1

Please sign in to comment.