11 lines
483 B
Python
11 lines
483 B
Python
from django.urls import path
|
|
from .views import UserRegistrationView, UserLoginView, UserLogoutView
|
|
|
|
urlpatterns = [
|
|
path('api/login/', UserLoginView.as_view(), name='login'),
|
|
path('api/logout/', UserLogoutView.as_view(), name='logout'),
|
|
path('api/register/', UserRegistrationView.as_view(), name='welcome'),
|
|
path('api/token/', TokenObtainPairView.as_view(), name='token_obtain_pair'),
|
|
path('api/token/refresh', TokenRefreshView.as_view(), name='token_fresh'),
|
|
]
|