Skip to content

Commit

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

0 comments on commit 86ec4a0

Please sign in to comment.