diff options
author | 2018-04-18 16:59:29 +0200 | |
---|---|---|
committer | 2018-04-18 16:59:29 +0200 | |
commit | 2f61514e999c08361b29bf9f0c1f1fb044d3f6e0 (patch) | |
tree | 433471571ba608ea5d0bbe89c99e75a260920630 /pysite/constants.py | |
parent | Adding Pinkie Pie to the hiphoppers list (diff) | |
parent | Pass can_edit into revisions list (diff) |
Merge branch 'master' of github.com:discord-python/site
Diffstat (limited to 'pysite/constants.py')
-rw-r--r-- | pysite/constants.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pysite/constants.py b/pysite/constants.py index 737f3a7a..ca18a288 100644 --- a/pysite/constants.py +++ b/pysite/constants.py @@ -80,3 +80,9 @@ DATADOG_PORT = int(environ.get("DATADOG_PORT") or 0) # CSRF CSRF = CSRFProtect() + +# GitHub Token +GITHUB_TOKEN = environ.get("GITHUB_TOKEN") or None + +# Audit Webhook +WIKI_AUDIT_WEBHOOK = environ.get("WIKI_AUDIT_WEBHOOK") or None |