mirror of https://github.com/zulip/zulip.git
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:
parent
37eb6a9863
commit
134c02e14e
|
@ -23,8 +23,8 @@ ALLOWED_HOSTS = ['*']
|
||||||
AUTHENTICATION_BACKENDS = (
|
AUTHENTICATION_BACKENDS = (
|
||||||
'zproject.backends.DevAuthBackend',
|
'zproject.backends.DevAuthBackend',
|
||||||
'zproject.backends.EmailAuthBackend',
|
'zproject.backends.EmailAuthBackend',
|
||||||
# 'zproject.backends.GitHubAuthBackend',
|
'zproject.backends.GitHubAuthBackend',
|
||||||
# 'zproject.backends.GoogleMobileOauth2Backend',
|
'zproject.backends.GoogleMobileOauth2Backend',
|
||||||
)
|
)
|
||||||
|
|
||||||
EXTERNAL_URI_SCHEME = "http://"
|
EXTERNAL_URI_SCHEME = "http://"
|
||||||
|
|
Loading…
Reference in New Issue