Skip to content

Commit

Permalink
[#38] fix: httpOnly false로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hsik0225 committed Jun 5, 2020
1 parent d6a81dc commit bd2702e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ private ResponseCookie bakeCookie(String key, String value) {
.secure(true)
.path("/")
.maxAge(60 * 60 * 24)
.httpOnly(true)
.httpOnly(false)
.build();
}

Expand Down

0 comments on commit bd2702e

Please sign in to comment.