Files
codebox/api/app/custom_auth/urls.py
2023-05-14 20:28:29 +03:00

9 lines
238 B
Python

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())
]