Skip to content

Commit

Permalink
Merge pull request #230 from 100-hours-a-week/test/secure-and-sameSite
Browse files Browse the repository at this point in the history
test: 쿠키 Secure, SameSite 속성 테스트 7
  • Loading branch information
sen2y authored Sep 25, 2024
2 parents 86ec4a0 + 0d78f5a commit cae0f21
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void kakaoLogin(
.httpOnly(true)
.maxAge(tokenDto.getTempTokenExpirationTime())
.domain("connectrip.site")
.sameSite("None")
// .sameSite("None")
.secure(true)
.build();

Expand Down

0 comments on commit cae0f21

Please sign in to comment.