settings: Enable GitHub and Google auth by default in dev.

We now show the GitHub/Google auth buttons by default, and just have a
reasonable error message for anyone who clicks them.

Fixes #3651.
This commit is contained in:
Tim Abbott 2017-08-16 09:19:03 -07:00
parent 37eb6a9863
commit 134c02e14e
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ ALLOWED_HOSTS = ['*']
AUTHENTICATION_BACKENDS = (
'zproject.backends.DevAuthBackend',
'zproject.backends.EmailAuthBackend',
# 'zproject.backends.GitHubAuthBackend',
# 'zproject.backends.GoogleMobileOauth2Backend',
'zproject.backends.GitHubAuthBackend',
'zproject.backends.GoogleMobileOauth2Backend',
)
EXTERNAL_URI_SCHEME = "http://"