From faefba91826412e51610ce107a10f52ab0b6e2b6 Mon Sep 17 00:00:00 2001 From: Carson Gee Date: Wed, 14 May 2014 10:20:21 -0400 Subject: [PATCH] Add ADDL_INSTALLED_APPS to studio for parity with lms --- cms/envs/aws.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cms/envs/aws.py b/cms/envs/aws.py index 2a854b7c8a..eaf9658047 100644 --- a/cms/envs/aws.py +++ b/cms/envs/aws.py @@ -168,6 +168,10 @@ ENV_FEATURES = ENV_TOKENS.get('FEATURES', ENV_TOKENS.get('MITX_FEATURES', {})) for feature, value in ENV_FEATURES.items(): FEATURES[feature] = value +# Additional installed apps +for app in ENV_TOKENS.get('ADDL_INSTALLED_APPS', []): + INSTALLED_APPS += (app,) + WIKI_ENABLED = ENV_TOKENS.get('WIKI_ENABLED', WIKI_ENABLED) LOGGING = get_logger_config(LOG_DIR,