From 6c7867384da5c9231ed3f004f31a0279835c2ad9 Mon Sep 17 00:00:00 2001 From: junho <2171168@hansung.ac.kr> Date: Tue, 9 Sep 2025 16:57:47 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=EB=A6=AC=EB=8B=A4=EC=9D=B4?= =?UTF-8?q?=EB=A0=89=ED=8A=B8=20uri=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/DecodEat/global/config/oauth/OAuth2SuccessHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/DecodEat/global/config/oauth/OAuth2SuccessHandler.java b/src/main/java/com/DecodEat/global/config/oauth/OAuth2SuccessHandler.java index d101e03..fd2a469 100644 --- a/src/main/java/com/DecodEat/global/config/oauth/OAuth2SuccessHandler.java +++ b/src/main/java/com/DecodEat/global/config/oauth/OAuth2SuccessHandler.java @@ -83,7 +83,7 @@ private void clearAuthenticationAttributes(HttpServletRequest request, HttpServl // 액세스 토큰을 리다이렉트 경로에 파라미터로 추가 private String getTargetUrl(String token) { - return UriComponentsBuilder.fromUriString("/swagger-ui/index.html") //todo:로그인 후 스웨거화면 + return UriComponentsBuilder.fromUriString("/decodeat.netlify.app") //todo:로그인 후 스웨거화면 .queryParam("token", token) .build() .toUriString();