Skip to content

Commit 1af8dc0

Browse files
authored
Dev > Main 브랜치 병합
1. 리디렉션 경로 주소 포트에 오타가 나 수정후 Main브랜치에 병합합니다.
2 parents 3d22f75 + fe0e3b7 commit 1af8dc0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/hs/kr/backend/devpals/infra/oauth2/Oauth2LoginSuccessHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public void onAuthenticationSuccess(HttpServletRequest request, HttpServletRespo
4848
user.updateGithub(githubUrl);
4949
userRepository.save(user);
5050

51-
response.sendRedirect("http://localhost:5137/oauth/github-success?githubUrl=" + githubUrl);
51+
response.sendRedirect("http://localhost:5173/oauth/github-success?githubUrl=" + githubUrl);
5252
return;
5353
}
5454

@@ -68,6 +68,6 @@ public void onAuthenticationSuccess(HttpServletRequest request, HttpServletRespo
6868
.maxAge(14 * 24 * 60 * 60)
6969
.build();
7070
response.setHeader("Set-Cookie", refreshCookie.toString());
71-
response.sendRedirect("http://localhost:5137/oauth-redirect");
71+
response.sendRedirect("http://localhost:5173/oauth-redirect");
7272
}
7373
}

0 commit comments

Comments
 (0)