From f0bef8981fa249bb8a2de2b66a8e50b1ecbcc025 Mon Sep 17 00:00:00 2001 From: Mariano Baragiola Date: Tue, 12 Dec 2017 15:31:20 -0300 Subject: [PATCH] ADD app_name to support django 2.0 --- rest_auth/registration/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rest_auth/registration/urls.py b/rest_auth/registration/urls.py index 1004695..a77a90b 100644 --- a/rest_auth/registration/urls.py +++ b/rest_auth/registration/urls.py @@ -3,6 +3,7 @@ from django.conf.urls import url from .views import RegisterView, VerifyEmailView +app_name = 'restauth_registration' urlpatterns = [ url(r'^$', RegisterView.as_view(), name='rest_register'), url(r'^verify-email/$', VerifyEmailView.as_view(), name='rest_verify_email'),