moving to docker
This commit is contained in:
8
api/app/custom_auth/urls.py
Normal file
8
api/app/custom_auth/urls.py
Normal file
@ -0,0 +1,8 @@
|
||||
from django.urls import path, include
|
||||
from custom_auth import views
|
||||
|
||||
urlpatterns = [
|
||||
path('', include('rest_framework.urls')),
|
||||
path('token/', views.CustomAuthToken.as_view()),
|
||||
path('register/', views.RegisterView.as_view())
|
||||
]
|
||||
Reference in New Issue
Block a user