Skip to content

Commit

Permalink
Merge pull request #44 from J1P4/dev2
Browse files Browse the repository at this point in the history
fix : Redirect PROD 변경
  • Loading branch information
gyumong authored May 10, 2024
2 parents dd4ef46 + 48bab62 commit a1029ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
@Slf4j
public class OAuth2LoginSuccessHandler implements AuthenticationSuccessHandler {
private final JwtUtil jwtUtil;
private static final String REDIRECT_URL = "http://localhost:3000/redirect";
private static final String REDIRECT_URL = "https://habit-fe.vercel.app/redirect";
@Override
public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, FilterChain chain, Authentication authentication) throws IOException, ServletException {
AuthenticationSuccessHandler.super.onAuthenticationSuccess(request, response, chain, authentication);
Expand Down

0 comments on commit a1029ff

Please sign in to comment.