From cc561b3e23b1f13e09041659e82a56b752707f57 Mon Sep 17 00:00:00 2001 From: sm4640 Date: Tue, 6 May 2025 20:03:58 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix:=20[#48]=20check=20url?= =?UTF-8?q?=EC=97=90=20=EC=A4=91=EB=B3=B5=20=EC=B2=B4=ED=81=AC=20api=20?= =?UTF-8?q?=EC=97=B0=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- users/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/urls.py b/users/urls.py index f7c8f47..3d84a25 100644 --- a/users/urls.py +++ b/users/urls.py @@ -9,7 +9,7 @@ urlpatterns = [ path('refresh-token/', RefreshAPIView.as_view()), path('join/', JoinAPIView.as_view()), path('login/', LoginAPIView.as_view()), - path('check/', NicknameAPIView.as_view()), + path('check/', CheckUserFieldDuplicateAPIView.as_view()), path('portfolio-info/', SetPortofolioRequiredInfoAPIView.as_view()), path('portfolio-info/check/', SetPortofolioRequiredInfoAPIView.as_view()), path('teamtag/', TagUserAPIView.as_view()),