Skip to content

Commit a2a2ed0

Browse files
committed
refactor: 소셜 로그인 엔드포인트 변경
1 parent 8990058 commit a2a2ed0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/apptive/team5/config/SecurityConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,6 @@ public CorsConfigurationSource corsConfigurationSource() {
7474
private final String[] whiteList =
7575
{
7676
"/api/jwt/exchange",
77-
"/api/auth/**"
77+
"/api/oauth2/**"
7878
};
7979
}

src/main/java/apptive/team5/oauth2/controller/OAuth2Controller.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
@RestController
1313
@RequiredArgsConstructor
14-
@RequestMapping("/api/auth")
14+
@RequestMapping("/api/oauth2")
1515
public class OAuth2Controller {
1616

1717
private final KakaoService kakaoService;

0 commit comments

Comments
 (0)