diff options
author | 2019-10-03 15:46:59 +0100 | |
---|---|---|
committer | 2019-10-03 15:46:59 +0100 | |
commit | 8cfff311f1b2bfba61a4662e045368cd6d3fa651 (patch) | |
tree | 63e477c376d75d0d3139f36ef2f203f46b08a568 /pydis_site/apps/home/urls.py | |
parent | Initial 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.py | 1 |
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) |