This commit is contained in:
2023-05-12 23:48:12 +03:00
parent d2e1b54d0c
commit 2d12da1bb8
21 changed files with 77 additions and 1099 deletions

View File

@ -3,5 +3,6 @@ from custom_auth import views
urlpatterns = [
path('', include('rest_framework.urls')),
path('token/', views.CustomAuthToken.as_view())
path('token/', views.CustomAuthToken.as_view()),
path('register/', views.RegisterView.as_view())
]