Skip to content

Commit

Permalink
fix: 쿠키 수정 전까지 리다이렉트 URL을 온보딩으로 고정하도록 변경 (#224)
Browse files Browse the repository at this point in the history
fix: 리다이렉트 URL 고정
  • Loading branch information
uwoobeat authored Mar 2, 2024
1 parent 91ff395 commit 14852b4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ public CustomSuccessHandler(JwtService jwtService, CookieUtil cookieUtil) {
public void onAuthenticationSuccess(
HttpServletRequest request, HttpServletResponse response, Authentication authentication)
throws ServletException, IOException {
String baseUri = determineTargetUrl(request, response);
// TODO: 사파리 쿠키 이슈 해결 후 재활성화
// String baseUri = determineTargetUrl(request, response);
String baseUri = PROD_CLIENT_ONBOARDING_URL;

CustomOAuth2User oAuth2User = (CustomOAuth2User) authentication.getPrincipal();

Expand Down

0 comments on commit 14852b4

Please sign in to comment.