From 170a044ff5d0f7a93bb2941b4b98b2a39980d30b Mon Sep 17 00:00:00 2001 From: sm4640 Date: Mon, 12 May 2025 11:56:15 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix:=20[#50]=20social-logi?= =?UTF-8?q?n=20url=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- users/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/users/urls.py b/users/urls.py index 3d84a25..2f386c8 100644 --- a/users/urls.py +++ b/users/urls.py @@ -9,6 +9,7 @@ urlpatterns = [ path('refresh-token/', RefreshAPIView.as_view()), path('join/', JoinAPIView.as_view()), path('login/', LoginAPIView.as_view()), + path('social-login/', GoogleLoginAPIView.as_view()), path('check/', CheckUserFieldDuplicateAPIView.as_view()), path('portfolio-info/', SetPortofolioRequiredInfoAPIView.as_view()), path('portfolio-info/check/', SetPortofolioRequiredInfoAPIView.as_view()),