Skip to content

Commit

Permalink
remove: cookie secure 옵션 주석 처리 #8
Browse files Browse the repository at this point in the history
  • Loading branch information
PgmJun committed Jan 18, 2024
1 parent 8adce85 commit 57f66b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ private void addTokensToCookie(TokenVO tokenVO, HttpServletResponse response) {

private void addTokenToCookie(String cookieName, String token, HttpServletResponse response) {
Cookie cookie = new Cookie(cookieName, token);
cookie.setSecure(true);
//cookie.setSecure(true);
cookie.setHttpOnly(true);

response.addCookie(cookie);
Expand Down

0 comments on commit 57f66b5

Please sign in to comment.