Store the feedback bot key in local_settings.py
(imported from commit 3322d8976328db61cd382acb06775c6a6df3fea0)
This commit is contained in:
parent
dac447d14e
commit
a283cae098
|
@ -5,6 +5,8 @@ import logging
|
||||||
|
|
||||||
sys.path.append(path.join(path.dirname(__file__), '../api'))
|
sys.path.append(path.join(path.dirname(__file__), '../api'))
|
||||||
import zulip
|
import zulip
|
||||||
|
sys.path.append(path.join(path.dirname(__file__), '../zproject'))
|
||||||
|
import local_settings
|
||||||
|
|
||||||
class StreamLogger(object):
|
class StreamLogger(object):
|
||||||
"""
|
"""
|
||||||
|
@ -34,12 +36,12 @@ sys.stderr = stderr_logger
|
||||||
|
|
||||||
prod_client = zulip.Client(
|
prod_client = zulip.Client(
|
||||||
email="feedback@zulip.com",
|
email="feedback@zulip.com",
|
||||||
api_key="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
api_key=local_settings.FEEDBACK_BOT_KEY,
|
||||||
verbose=True,
|
verbose=True,
|
||||||
site="https://api.zulip.com")
|
site="https://api.zulip.com")
|
||||||
staging_client = zulip.Client(
|
staging_client = zulip.Client(
|
||||||
email="feedback@zulip.com",
|
email="feedback@zulip.com",
|
||||||
api_key="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
api_key=local_settings.FEEDBACK_BOT_KEY,
|
||||||
verbose=True,
|
verbose=True,
|
||||||
site="https://staging.zulip.com/api")
|
site="https://staging.zulip.com/api")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue