7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-28 17:33:29 +00:00

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.
This commit is contained in:
Régis Behmo 2018-10-03 19:10:25 +02:00
parent 0bc553fbe4
commit 79a98e39f6

View File

@ -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 }}",