aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/home/urls.py
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2019-10-03 15:46:59 +0100
committerGravatar Gareth Coles <[email protected]>2019-10-03 15:46:59 +0100
commit8cfff311f1b2bfba61a4662e045368cd6d3fa651 (patch)
tree63e477c376d75d0d3139f36ef2f203f46b08a568 /pydis_site/apps/home/urls.py
parentInitial Allauth dependency and settings/urls (diff)
Remove accidental static files commit; fix Allauth
Diffstat (limited to 'pydis_site/apps/home/urls.py')
-rw-r--r--pydis_site/apps/home/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pydis_site/apps/home/urls.py b/pydis_site/apps/home/urls.py
index e65abea4..b9e7341b 100644
--- a/pydis_site/apps/home/urls.py
+++ b/pydis_site/apps/home/urls.py
@@ -9,6 +9,7 @@ app_name = 'home'
urlpatterns = [
path('', HomeView.as_view(), name='home'),
path('pages/', include('wiki.urls')),
+ path('accounts/', include('allauth.urls'), name='auth'),
path('admin/', admin.site.urls),
path('notifications/', include('django_nyt.urls')),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)