Commit 18b05fe7 by John Jarvis

enabled_features changed mitx_features

parent 703293f7
......@@ -32,8 +32,9 @@ LOG_DIR = ENV_TOKENS['LOG_DIR']
CACHES = ENV_TOKENS['CACHES']
for feature in ENV_TOKEN['ENABLED_FEATURE']:
MITX_FEATURES[feature] = True
for feature,value in ENV_TOKENS.get('MITX_FEATURES', {}).items():
MITX_FEATURES[feature] = value
LOGGING = get_logger_config(LOG_DIR,
logging_env=ENV_TOKENS['LOGGING_ENV'],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment