From f44424d3107f1de1663cdab749ac406da3ed09e3 Mon Sep 17 00:00:00 2001 From: saeed Date: Wed, 24 Jul 2024 19:33:43 +0330 Subject: [PATCH] fix url path rest_password --- dj_rest_auth/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dj_rest_auth/urls.py b/dj_rest_auth/urls.py index 9d48bf81..e509ef6a 100644 --- a/dj_rest_auth/urls.py +++ b/dj_rest_auth/urls.py @@ -11,7 +11,7 @@ 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('password/reset/confirm///', PasswordResetConfirmView.as_view(), name='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'),