improvement: enable prerequisites course feature by default

Set MILESTONES_APP and ENABLE_PREREQUISITE_COURSES to true as default.

See: https://discuss.overhang.io/t/course-prerequisites/162
This commit is contained in:
Kevin Valencia 2021-10-06 10:29:21 -05:00 committed by Régis Behmo
parent d4dc02b0fd
commit 72d01a05dc
3 changed files with 7 additions and 2 deletions

View File

@ -5,6 +5,7 @@ Note: Breaking changes between versions are indicated by "💥".
## Unreleased
- [Feature] Add configuration setting `PREVIEW_LMS_BASE` for custom preview domain.
- [Improvement] Enable milestones application flag `MILESTONES_APP` and prerequisite courses feature flags `ENABLE_PREREQUISITE_COURSES` by default.
## v12.1.3 (2021-09-28)

View File

@ -13,7 +13,9 @@
"ENABLE_COURSEWARE_INDEX": true,
"ENABLE_CSMH_EXTENDED": false,
"ENABLE_LEARNER_RECORDS": false,
"ENABLE_LIBRARY_INDEX": true
"ENABLE_LIBRARY_INDEX": true,
"MILESTONES_APP": true,
"ENABLE_PREREQUISITE_COURSES": true
},
"LMS_ROOT_URL": "{{ "https" if ENABLE_HTTPS else "http" }}://{{ LMS_HOST }}",
"CMS_ROOT_URL": "{{ "https" if ENABLE_HTTPS else "http" }}://{{ CMS_HOST }}",

View File

@ -20,7 +20,9 @@
"ENABLE_LEARNER_RECORDS": false,
"ENABLE_MOBILE_REST_API": true,
"ENABLE_OAUTH2_PROVIDER": true,
"ENABLE_THIRD_PARTY_AUTH": true
"ENABLE_THIRD_PARTY_AUTH": true,
"MILESTONES_APP": true,
"ENABLE_PREREQUISITE_COURSES": true
},
"LMS_ROOT_URL": "{{ "https" if ENABLE_HTTPS else "http" }}://{{ LMS_HOST }}",
"CMS_ROOT_URL": "{{ "https" if ENABLE_HTTPS else "http" }}://{{ CMS_HOST }}",