aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/urls.py
diff options
context:
space:
mode:
authorAndrea Lepori <alepori@student.ethz.ch>2022-01-05 18:07:03 +0100
committerAndrea Lepori <alepori@student.ethz.ch>2022-01-05 18:07:30 +0100
commitab554e1f401d9679b17e8d590c6e530fecc4fd80 (patch)
treed241b586d26ac984ff2b1a3fe6c755f7e03e9ad1 /accounts/urls.py
parentmove all views together in accounts (diff)
downloadscout-subs-ab554e1f401d9679b17e8d590c6e530fecc4fd80.tar.gz
scout-subs-ab554e1f401d9679b17e8d590c6e530fecc4fd80.zip
force user linked to midata to use midata login
Diffstat (limited to 'accounts/urls.py')
-rw-r--r--accounts/urls.py1
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'),