Feat: [#13] 회원가입, 로그인, 토큰 재발급, 닉네임 중복 체크 url 설정

This commit is contained in:
sm4640
2025-04-08 01:04:20 +09:00
parent 02ec10d43a
commit 65d0c10889

12
users/urls.py Normal file
View File

@@ -0,0 +1,12 @@
from django.urls import path
from .views import *
app_name = 'users'
urlpatterns = [
path('refresh-token/', RefreshAPIView.as_view()),
path('join/', JoinAPIView.as_view()),
path('login/', LoginAPIView.as_view()),
path('check/', NicknameAPIView.as_view()),
]