Skip to content

Commit

Permalink
Merge pull request #232 from 42Where/develop
Browse files Browse the repository at this point in the history
[fix] : modify redirect
  • Loading branch information
leeesooha authored Dec 3, 2024
2 parents 287e34d + 8b4d001 commit dcf67c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ public class OAuth2FailureHandler extends SimpleUrlAuthenticationFailureHandler
public void onAuthenticationFailure(
HttpServletRequest request, HttpServletResponse response, AuthenticationException exception)
throws IOException, ServletException {
response.sendRedirect("https://dev.where42.kr/login-fail");
response.sendRedirect("https://where42.kr/login-fail");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void onAuthenticationSuccess(final HttpServletRequest request, final Http
request,
response,
UriComponentsBuilder
.fromUriString("https://dev.where42.kr")
.fromUriString("https://where42.kr")
.queryParam("intraId", member.getIntraId())
.queryParam("agreement", member.isAgree())
.build()
Expand Down

0 comments on commit dcf67c1

Please sign in to comment.