Skip to content

Commit

Permalink
hotfix : cookie utill 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
oosedus authored Oct 19, 2024
1 parent 0840ff2 commit a48c9d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/corecord/dev/common/util/CookieUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public ResponseCookie createTokenCookie(String tokenName, String token) {

return ResponseCookie.from(tokenName, token)
.httpOnly(true)
.secure(true) // 배포 시 true로 설정
.secure(true) // 배포 시 true로 설정
.sameSite("None")
.path("/")
.maxAge(expirationTime / 1000) // maxAge는 초 단위
Expand Down

0 comments on commit a48c9d1

Please sign in to comment.