Skip to content

Commit

Permalink
Merge pull request #89 from everymeals/feature/store-post-review
Browse files Browse the repository at this point in the history
chore : 쿠키설정 secure 제거
  • Loading branch information
Qbeom0925 authored Feb 6, 2024
2 parents 77376f4 + 5b43ce8 commit 9975852
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ private ResponseEntity<ApplicationResponse<UserLoginRes>> setRefreshToken(
.sameSite("None")
.path("/")
.maxAge(60 * 60 * 24 * 30L)
.secure(true)
// .secure(true)
.build();
return ResponseEntity.ok()
.header("Set-Cookie", cookie.toString())
Expand Down

0 comments on commit 9975852

Please sign in to comment.