From ce01a574c7141ccb711a3e8cabf6364bd442d2ef Mon Sep 17 00:00:00 2001 From: Kevin Mann Date: Wed, 12 Jul 2017 10:06:06 -0600 Subject: [PATCH] Making trailing slashes optional for all rest endpoints --- rest_auth/registration/urls.py | 2 +- rest_auth/urls.py | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/rest_auth/registration/urls.py b/rest_auth/registration/urls.py index 1004695..5ddd085 100644 --- a/rest_auth/registration/urls.py +++ b/rest_auth/registration/urls.py @@ -5,7 +5,7 @@ from .views import RegisterView, VerifyEmailView urlpatterns = [ url(r'^$', RegisterView.as_view(), name='rest_register'), - url(r'^verify-email/$', VerifyEmailView.as_view(), name='rest_verify_email'), + url(r'^verify-email/?$', VerifyEmailView.as_view(), name='rest_verify_email'), # This url is used by django-allauth and empty TemplateView is # defined just to allow reverse() call inside app, for example when email diff --git a/rest_auth/urls.py b/rest_auth/urls.py index 7a35e9b..c3456fc 100644 --- a/rest_auth/urls.py +++ b/rest_auth/urls.py @@ -7,14 +7,14 @@ from rest_auth.views import ( urlpatterns = [ # URLs that do not require a session or valid token - url(r'^password/reset/$', PasswordResetView.as_view(), + url(r'^password/reset/?$', PasswordResetView.as_view(), name='rest_password_reset'), - url(r'^password/reset/confirm/$', PasswordResetConfirmView.as_view(), + url(r'^password/reset/confirm/?$', PasswordResetConfirmView.as_view(), name='rest_password_reset_confirm'), - url(r'^login/$', LoginView.as_view(), name='rest_login'), + url(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(), + 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(), name='rest_password_change'), ]