From 0b6fe2c54aa176d9964ec3e01560f6043b592964 Mon Sep 17 00:00:00 2001 From: DJ Gillespie Date: Tue, 15 Sep 2020 19:13:45 -0600 Subject: [PATCH] [QRTR-78] Fixed auth url path for confirmation emails. --- core/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/urls.py b/core/urls.py index 2a430ac..435911d 100644 --- a/core/urls.py +++ b/core/urls.py @@ -55,7 +55,7 @@ apipatterns = [ path('', include(router.urls)), path('auth/', include('dj_rest_auth.urls'), name='auth'), path('auth/registration/', include('dj_rest_auth.registration.urls')), - re_path('rest-auth/registration/account-confirm-email/(?P.+)/', + re_path('auth/registration/account-confirm-email/(?P.+)/', confirm_email, name='account_confirm_email'), path('auth/facebook/', FacebookLogin.as_view(), name='fb_login'), path('auth/twitter/', TwitterLogin.as_view(), name='twitter_login'),