Add support for tuf metadata endpoints

This commit is contained in:
Evan Cordell 2017-02-13 14:14:44 -05:00
parent 6436444274
commit 9affe193db
7 changed files with 78 additions and 26 deletions

View file

@ -165,10 +165,10 @@ class DefaultConfig(object):
# Feature Flag: Whether Google login is supported.
FEATURE_GOOGLE_LOGIN = False
# Feature Flag: Whther Dex login is supported.
# Feature Flag: Whether Dex login is supported.
FEATURE_DEX_LOGIN = False
# Feature flag, whether to enable support chat
# Feature flag: whether to enable support chat
FEATURE_SUPPORT_CHAT = False
# Feature Flag: Whether to support GitHub build triggers.
@ -414,3 +414,6 @@ class DefaultConfig(object):
FEATURE_RECAPTCHA = False
RECAPTCHA_SITE_KEY = None
RECAPTCHA_SECRET_KEY = None
# Server where TUF metadata can be found
TUF_SERVER = None