✨ Feat: [#13] 회원가입, 로그인, 토큰 재발급, 닉네임 중복 체크 url 설정
This commit is contained in:
12
users/urls.py
Normal file
12
users/urls.py
Normal 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()),
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user