From 843073a4e77b5a315fdce887d7ec9f18f7f0d10a Mon Sep 17 00:00:00 2001 From: OMAR AIT BENHADDI <88466716+Omaraitbenhaddi@users.noreply.github.com> Date: Sat, 13 Aug 2022 06:23:05 +0200 Subject: [PATCH] Update urls.py --- rest_auth/urls.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/rest_auth/urls.py b/rest_auth/urls.py index 7a35e9b5..19455193 100644 --- a/rest_auth/urls.py +++ b/rest_auth/urls.py @@ -1,4 +1,4 @@ -from django.conf.urls import url +from django.urls import re_path from rest_auth.views import ( LoginView, LogoutView, UserDetailsView, PasswordChangeView, @@ -7,14 +7,14 @@ urlpatterns = [ # URLs that do not require a session or valid token - url(r'^password/reset/$', PasswordResetView.as_view(), + re_path(r'^password/reset/$', PasswordResetView.as_view(), name='rest_password_reset'), - url(r'^password/reset/confirm/$', PasswordResetConfirmView.as_view(), + re_path(r'^password/reset/confirm/$', PasswordResetConfirmView.as_view(), name='rest_password_reset_confirm'), - url(r'^login/$', LoginView.as_view(), name='rest_login'), + re_path(r'^login/$', LoginView.as_view(), name='rest_login'), # URLs that require a user to be logged in with a valid session / token. - url(r'^logout/$', LogoutView.as_view(), name='rest_logout'), - url(r'^user/$', UserDetailsView.as_view(), name='rest_user_details'), - url(r'^password/change/$', PasswordChangeView.as_view(), + re_path(r'^logout/$', LogoutView.as_view(), name='rest_logout'), + re_path(r'^user/$', UserDetailsView.as_view(), name='rest_user_details'), + re_path(r'^password/change/$', PasswordChangeView.as_view(), name='rest_password_change'), ]