From 79a98e39f6e62af49f2ca691cab5c5eb55c7f99e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Wed, 3 Oct 2018 19:10:25 +0200 Subject: [PATCH] Activate notes without fiddling with advanced settings When the ENABLE_EDXNOTES feature is added to the CMS, it is not necessary to modify the advanced module list to activate notes for each course. Close #79. --- configurator/templates/openedx/cms.env.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configurator/templates/openedx/cms.env.json b/configurator/templates/openedx/cms.env.json index 8d50585..2aba3b5 100644 --- a/configurator/templates/openedx/cms.env.json +++ b/configurator/templates/openedx/cms.env.json @@ -8,7 +8,8 @@ "FEATURES": { "PREVIEW_LMS_BASE": "preview.{{ LMS_HOST }}", "ENABLE_COURSEWARE_INDEX": true, - "ENABLE_LIBRARY_INDEX": true + "ENABLE_LIBRARY_INDEX": true, + "ENABLE_EDXNOTES": {{ "true" if ACTIVATE_NOTES else "false" }} }, "LMS_ROOT_URL": "{{ "https" if ACTIVATE_HTTPS else "http" }}://{{ LMS_HOST }}", "CMS_ROOT_URL": "{{ "https" if ACTIVATE_HTTPS else "http" }}://{{ CMS_HOST }}",