Skip to content

Commit

Permalink
[ES-1115]Update AuthorizationServiceImpl.java (#725)
Browse files Browse the repository at this point in the history
Signed-off-by: Balaji Alluru <[email protected]>
  • Loading branch information
balaji-alluru authored May 28, 2024
1 parent f2a65da commit 5fa4e4c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ public SignupRedirectResponse prepareSignupRedirect(SignupRedirectRequest signup
Cookie cookie = new Cookie(uuid, IdentityProviderUtil.b64Encode(cookieValue));
cookie.setMaxAge(signupIDTokenValidity);
cookie.setSecure(true);
cookie.setHttpOnly(true);
cookie.setHttpOnly(false);
cookie.setPath("/");
response.addCookie(cookie);
return signupRedirectResponse;
Expand Down

0 comments on commit 5fa4e4c

Please sign in to comment.