diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fe3127..8700b84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ Note: Breaking changes between versions are indicated by "💥". +## Unreleased + +- [Feature] Get rid of outdated sysadmin dashboard in LMS at /sysadmin + ## v10.1.0 (2020-07-23) - [Security] Apply edx-platform upstream xss security fixes ([pull request](https://github.com/edx/edx-platform/pull/24568)) diff --git a/tutor/templates/apps/openedx/config/lms.env.json b/tutor/templates/apps/openedx/config/lms.env.json index babf2f8..45888d9 100644 --- a/tutor/templates/apps/openedx/config/lms.env.json +++ b/tutor/templates/apps/openedx/config/lms.env.json @@ -18,7 +18,6 @@ "ENABLE_GRADE_DOWNLOADS": true, "ENABLE_MOBILE_REST_API": true, "ENABLE_OAUTH2_PROVIDER": true, - "ENABLE_SYSADMIN_DASHBOARD": true, "ENABLE_THIRD_PARTY_AUTH": true }, "LMS_ROOT_URL": "{{ "https" if ACTIVATE_HTTPS else "http" }}://{{ LMS_HOST }}", diff --git a/tutor/templates/apps/openedx/settings/partials/common_all.py b/tutor/templates/apps/openedx/settings/partials/common_all.py index ed83fa2..350c7c3 100644 --- a/tutor/templates/apps/openedx/settings/partials/common_all.py +++ b/tutor/templates/apps/openedx/settings/partials/common_all.py @@ -17,7 +17,7 @@ API_ACCESS_FROM_EMAIL = ENV_TOKENS["CONTACT_EMAIL"] # Load module store settings from config files update_module_store_settings(MODULESTORE, doc_store_settings=DOC_STORE_CONFIG) -DATA_DIR = path("/openedx/data/") +DATA_DIR = "/openedx/data/" for store in MODULESTORE["default"]["OPTIONS"]["stores"]: store["OPTIONS"]["fs_root"] = DATA_DIR