From a67cdb5a52e2bae6102d558074b4d2ba59c04907 Mon Sep 17 00:00:00 2001 From: Mahmoud Adel Date: Sat, 8 Aug 2020 01:59:23 +0200 Subject: [PATCH] switch to using path() and re_path() instead of deprecated url() --- dj_rest_auth/registration/urls.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dj_rest_auth/registration/urls.py b/dj_rest_auth/registration/urls.py index c42cec6..04fc7f4 100644 --- a/dj_rest_auth/registration/urls.py +++ b/dj_rest_auth/registration/urls.py @@ -1,11 +1,11 @@ -from django.conf.urls import url +from django.urls import path, re_path from django.views.generic import TemplateView 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'), + path('', RegisterView.as_view(), name='rest_register'), + path('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 @@ -18,6 +18,6 @@ urlpatterns = [ # If you don't want to use API on that step, then just use ConfirmEmailView # view from: # django-allauth https://github.com/pennersr/django-allauth/blob/master/allauth/account/views.py - url(r'^account-confirm-email/(?P[-:\w]+)/$', TemplateView.as_view(), + re_path(r'^account-confirm-email/(?P[-:\w]+)/$', TemplateView.as_view(), name='account_confirm_email'), ]