Make feedback button option default-off.

(imported from commit 23b89ab72bd04826016631e01da950af0a5df694)
This commit is contained in:
Tim Abbott 2015-08-20 19:42:04 -07:00
parent 13f3b448e5
commit 58e5c654fa
2 changed files with 3 additions and 3 deletions

View File

@ -57,13 +57,13 @@ SESSION_EXPIRE_AT_BROWSER_CLOSE = False
SESSION_COOKIE_AGE = 60 * 60 * 24 * 7 * 2 # 2 weeks
# Controls whether or not there is a feedback button in the UI.
ENABLE_FEEDBACK = True
ENABLE_FEEDBACK = False
# By default, the feedback button will submit feedback to the Zulip
# developers. If you set FEEDBACK_EMAIL to be an email address
# (e.g. ZULIP_ADMINISTRATOR), feedback sent by your users will instead
# be sent to that email address.
# FEEDBACK_EMAIL = ZULIP_ADMINISTRATOR
FEEDBACK_EMAIL = ZULIP_ADMINISTRATOR
# Controls whether or not error reports are sent to Zulip. Error
# reports are used to improve the quality of the product and do not

View File

@ -389,7 +389,7 @@ DEFAULT_SETTINGS = {'TWITTER_CONSUMER_KEY': '',
'ADMINS': '',
'INLINE_IMAGE_PREVIEW': True,
'CAMO_URI': '',
'ENABLE_FEEDBACK': True,
'ENABLE_FEEDBACK': DEPLOYED,
'FEEDBACK_EMAIL': None,
'ENABLE_GRAVATAR': True,
'DEFAULT_AVATAR_URI': '/static/images/default-avatar.png',