Skip to content

Commit

Permalink
feat: 테스트를 위한 sameSite 설정 제 #369
Browse files Browse the repository at this point in the history
  • Loading branch information
jhon3242 committed Oct 28, 2024
1 parent 0ecd166 commit 8948d9c
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public ResponseCookie getEncodedCookie(Object value, String origin) {
.httpOnly(true)
.secure(true)
.path(DEFAULT_PATH)
.sameSite(getSameSiteOption(origin))
.build();
}

Expand All @@ -35,7 +34,6 @@ public ResponseCookie deleteCookie(String origin) {
.httpOnly(true)
.secure(true)
.path(DEFAULT_PATH)
.sameSite(getSameSiteOption(origin))
.maxAge(0)
.build();
}
Expand Down

0 comments on commit 8948d9c

Please sign in to comment.