Skip to content

Commit

Permalink
feat(BE) : 로그인 시 브라우저에 쿠키 남지 않던 오류 추가 수정(#93) (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktykty0722 authored Feb 10, 2023
1 parent 00dde48 commit c497098
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ public ResponseEntity<?> login(@Valid @RequestBody UserLoginReq userLoginReq, Ht
.domain("amatta.site")
.httpOnly(true)
.path("/")
.secure(true)
.sameSite("None")
.build();
httpServletResponse.addHeader("Set-Cookie", responseCookie.toString());
return new ResponseEntity<>(new UserLoginRes(true), HttpStatus.OK);
Expand Down

0 comments on commit c497098

Please sign in to comment.