diff options
author | 2019-10-23 01:07:24 +0100 | |
---|---|---|
committer | 2019-10-23 01:07:24 +0100 | |
commit | 49376a76289ab22f1aff55d8971b0ea198ec9316 (patch) | |
tree | 5ad08c22d37dcf2c922e3d15c9df5df435bbdf2f /pydis_site/apps/home/urls.py | |
parent | Add role mapping migration I forgot to commit (diff) |
Add user settings modal, with connections management and account deletion
Diffstat (limited to 'pydis_site/apps/home/urls.py')
-rw-r--r-- | pydis_site/apps/home/urls.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pydis_site/apps/home/urls.py b/pydis_site/apps/home/urls.py index 70a41177..61e87a39 100644 --- a/pydis_site/apps/home/urls.py +++ b/pydis_site/apps/home/urls.py @@ -10,7 +10,10 @@ from .views import AccountDeleteView, AccountSettingsView, HomeView app_name = 'home' urlpatterns = [ + # We do this twice because Allauth expects specific view names to exist path('', HomeView.as_view(), name='home'), + path('', HomeView.as_view(), name='socialaccount_connections'), + path('pages/', include('wiki.urls')), path('accounts/', include('allauth.socialaccount.providers.discord.urls')), |