Skip to content

Commit

Permalink
Merge pull request #61 from potenday-project/develop
Browse files Browse the repository at this point in the history
쿠키 도메인 추가
  • Loading branch information
HwangHoYoon authored Jan 20, 2024
2 parents ca30b6a + 15a0a9f commit 483a312
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/chwipoClova/common/utils/JwtUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public void setCookieRefreshToken(HttpServletResponse response, String refreshTo
.maxAge(REFRESH_COOKIE_TIME)
.path("/")
.secure(true)
//.domain(domain)
.domain(domain)
.sameSite("None")
.httpOnly(true)
.build();
Expand Down

0 comments on commit 483a312

Please sign in to comment.