diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2022-01-05 18:07:03 +0100 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2022-01-05 18:07:30 +0100 |
commit | ab554e1f401d9679b17e8d590c6e530fecc4fd80 (patch) | |
tree | d241b586d26ac984ff2b1a3fe6c755f7e03e9ad1 /accounts/urls.py | |
parent | move all views together in accounts (diff) | |
download | scout-subs-ab554e1f401d9679b17e8d590c6e530fecc4fd80.tar.gz scout-subs-ab554e1f401d9679b17e8d590c6e530fecc4fd80.zip |
force user linked to midata to use midata login
Diffstat (limited to '')
-rw-r--r-- | accounts/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/accounts/urls.py b/accounts/urls.py index fa85a5b..46cb438 100644 --- a/accounts/urls.py +++ b/accounts/urls.py @@ -4,6 +4,7 @@ from . import views urlpatterns = [ path('signup/', views.signup, name='signup'), + path('login/', views.CustomLoginView.as_view(), name='login'), path('personal/', views.personal, name='personal'), path('terms/', views.terms, name='terms'), path('oauth_login/', views.oauth_login, name='oauth_login'), |