diff options
author | 2019-10-06 21:37:11 +0100 | |
---|---|---|
committer | 2019-10-06 21:37:11 +0100 | |
commit | c1373252880124b54c3ecafe6223a3715957013c (patch) | |
tree | be73bcf9a27ea7035aef22ffe596662b738fc150 | |
parent | Prevent saving emails, remove login page (diff) |
Remove GH login implementation, out of scope of this PR
-rw-r--r-- | pydis_site/apps/home/urls.py | 1 | ||||
-rw-r--r-- | pydis_site/settings.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/pydis_site/apps/home/urls.py b/pydis_site/apps/home/urls.py index dbb53cb6..8428327f 100644 --- a/pydis_site/apps/home/urls.py +++ b/pydis_site/apps/home/urls.py @@ -15,7 +15,6 @@ urlpatterns = [ path('pages/', include('wiki.urls')), path('accounts/', include('allauth.socialaccount.providers.discord.urls')), - path('accounts/', include('allauth.socialaccount.providers.github.urls')), path( 'accounts/login/cancelled', MessageRedirectView.as_view( diff --git a/pydis_site/settings.py b/pydis_site/settings.py index f3d573c1..21d6b427 100644 --- a/pydis_site/settings.py +++ b/pydis_site/settings.py @@ -87,7 +87,6 @@ INSTALLED_APPS = [ 'allauth.socialaccount', 'allauth.socialaccount.providers.discord', - 'allauth.socialaccount.providers.github', 'crispy_forms', 'django_crispy_bulma', |