Skip to content

Commit

Permalink
Merge pull request #33 from Soongsil-CoffeeChat/dev
Browse files Browse the repository at this point in the history
change loginsuccess redirect: https:localhost:3000/callback
  • Loading branch information
KimKyoHwee authored Jun 1, 2024
2 parents d1ca2f5 + 49dbf68 commit 42f7c6f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ public void onAuthenticationSuccess(HttpServletRequest request, HttpServletRespo
}

response.setStatus(HttpStatus.OK.value());
response.sendRedirect("https://cogo.life/swagger-ui/index.html");
//response.sendRedirect("https://cogo.life/swagger-ui/index.html");
response.sendRedirect("https://localhost:3000/callback");
}

private void addSameSiteCookie(HttpServletResponse response, String name, String value) {
Expand Down

0 comments on commit 42f7c6f

Please sign in to comment.