mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-12-02 13:53:43 +03:00
30 lines
1.2 KiB
Python
30 lines
1.2 KiB
Python
from dj_rest_auth.views import (LoginView, LogoutView, PasswordChangeView,
|
|
PasswordResetConfirmView, PasswordResetView,
|
|
UserDetailsView)
|
|
from django.urls import path
|
|
from django.conf import settings
|
|
|
|
urlpatterns = [
|
|
# URLs that do not require a session or valid token
|
|
path('password/reset/', PasswordResetView.as_view(),
|
|
name='rest_password_reset'),
|
|
path('password/reset/confirm/', PasswordResetConfirmView.as_view(),
|
|
name='rest_password_reset_confirm'),
|
|
path('login/', LoginView.as_view(), name='rest_login'),
|
|
# URLs that require a user to be logged in with a valid session / token.
|
|
path('logout/', LogoutView.as_view(), name='rest_logout'),
|
|
path('user/', UserDetailsView.as_view(), name='rest_user_details'),
|
|
path('password/change/', PasswordChangeView.as_view(),
|
|
name='rest_password_change'),
|
|
]
|
|
|
|
if getattr(settings, 'REST_USE_JWT', False):
|
|
from rest_framework_simplejwt.views import (
|
|
TokenRefreshView, TokenVerifyView,
|
|
)
|
|
|
|
urlpatterns += [
|
|
path('token/verify/', TokenVerifyView.as_view(), name='token_verify'),
|
|
path('token/refresh/', TokenRefreshView.as_view(), name='token_refresh'),
|
|
]
|