Skip to content

Commit

Permalink
hotfix : redirect 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seungueonn committed Sep 17, 2023
1 parent f120023 commit 77a374a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/gip/sever/controller/OauthController.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ public void callback(
if(oauthService.oauthLogin(httpSession,socialLoginType, code)==1){
// throw new AdditionalException();
//redirect
response.sendRedirect("https://frontend-beta-ecru.vercel.app");
response.sendRedirect("https://frontend-beta-ecru.vercel.app/mypage");
// return ResponseEntity.ok(SuccessResponse.create(ADDITIONAL_INFO_NEED.getMessage()));
}else{
response.sendRedirect("https://frontend-beta-ecru.vercel.app");
response.sendRedirect("https://frontend-beta-ecru.vercel.app/mypage");
// return ResponseEntity.ok(SuccessResponse.create(LOGIN_SUCCESS.getMessage()));
}

Expand Down

0 comments on commit 77a374a

Please sign in to comment.