From ab7862d23ac872ba14e6e9174c4bb52de60bbf44 Mon Sep 17 00:00:00 2001 From: Bryan Wilson Date: Wed, 14 Aug 2019 18:01:17 -0700 Subject: [PATCH] Set empty defaults for Appsembler features in common envs --- cms/envs/common.py | 5 +++++ lms/envs/common.py | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/cms/envs/common.py b/cms/envs/common.py index f957ed258ad2..6efc3e91e76f 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -1541,3 +1541,8 @@ # setting for the FileWrapper class used to iterate over the export file data. # See: https://docs.python.org/2/library/wsgiref.html#wsgiref.util.FileWrapper COURSE_EXPORT_DOWNLOAD_CHUNK_SIZE = 8192 + + +############## Appsembler defaults for test env etc. ############################ + +APPSEMBLER_FEATURES = {} diff --git a/lms/envs/common.py b/lms/envs/common.py index 1fbe4134f1e6..67914137b57e 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -3478,3 +3478,9 @@ def _make_locale_paths(settings): from openedx.core.djangoapps.plugins import plugin_apps, plugin_settings, constants as plugin_constants INSTALLED_APPS.extend(plugin_apps.get_apps(plugin_constants.ProjectType.LMS)) plugin_settings.add_plugins(__name__, plugin_constants.ProjectType.LMS, plugin_constants.SettingsType.COMMON) + + +############## Appsembler defaults for test env etc. ############################ + +APPSEMBLER_FEATURES = {} +CUSTOM_LOGOUT_REDIRECT_URL = None