p00003/accounts/urls.py
greenamber676 c03d676112
Some checks failed
DEV-234/pipeline/head There was a failure building this commit
url correction
2025-01-20 20:41:17 -05:00

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'),
]