Update configuration examples to use current Google auth backend.

This commit is contained in:
Tim Abbott 2015-09-26 13:50:28 -07:00
parent 8159c03205
commit 140e598a89
2 changed files with 2 additions and 3 deletions

View File

@ -20,7 +20,7 @@ ADMIN_DOMAIN = 'example.com'
AUTHENTICATION_BACKENDS = (
# 'zproject.backends.EmailAuthBackend', # Email and password
# 'zproject.backends.ZulipRemoteUserBackend', # Local SSO
# 'zproject.backends.GoogleBackend', # Google Apps
# 'zproject.backends.GoogleMobileOauth2Backend', # Google Apps, setup below
)
# If you are using the ZulipRemoteUserBackend authentication backend,

View File

@ -86,8 +86,7 @@ else:
AUTHENTICATION_BACKENDS = ('zproject.backends.DevAuthBackend',)
# Add some of the below if you're testing other backends
# AUTHENTICATION_BACKENDS = ('zproject.backends.EmailAuthBackend',
# 'zproject.backends.GoogleMobileOauth2Backend',
# 'zproject.backends.GoogleBackend')
# 'zproject.backends.GoogleMobileOauth2Backend',)
EXTERNAL_URI_SCHEME = "http://"
EMAIL_GATEWAY_PATTERN = "%s@" + EXTERNAL_HOST
ADMIN_DOMAIN = "zulip.com"