mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-13 06:37:46 +00:00
Disable learner records globally by default
Previously, platform administrators had to define a site configuration to disable this feature. See https://discuss.overhang.io/t/account-settings-is-not-working/967/3
This commit is contained in:
parent
8c9ebe8512
commit
371b2b5c2d
@ -4,6 +4,7 @@ Note: Breaking changes between versions are indicated by "💥".
|
|||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
- [Bugfix] Disable learner records globally by default
|
||||||
- [Improvement] Upgrade to the latest release of MySQL 5.6
|
- [Improvement] Upgrade to the latest release of MySQL 5.6
|
||||||
- [Improvement] Non-plugin settings added by "set" directives are now automatically removed when the plugin is disabled (#241)
|
- [Improvement] Non-plugin settings added by "set" directives are now automatically removed when the plugin is disabled (#241)
|
||||||
|
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
"PREVIEW_LMS_BASE": "preview.{{ LMS_HOST }}",
|
"PREVIEW_LMS_BASE": "preview.{{ LMS_HOST }}",
|
||||||
"ENABLE_COURSEWARE_INDEX": true,
|
"ENABLE_COURSEWARE_INDEX": true,
|
||||||
"ENABLE_CSMH_EXTENDED": false,
|
"ENABLE_CSMH_EXTENDED": false,
|
||||||
|
"ENABLE_LEARNER_RECORDS": false,
|
||||||
"ENABLE_LIBRARY_INDEX": true
|
"ENABLE_LIBRARY_INDEX": true
|
||||||
},
|
},
|
||||||
"LMS_ROOT_URL": "{{ "https" if ACTIVATE_HTTPS else "http" }}://{{ LMS_HOST }}",
|
"LMS_ROOT_URL": "{{ "https" if ACTIVATE_HTTPS else "http" }}://{{ LMS_HOST }}",
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
"ENABLE_DASHBOARD_SEARCH": true,
|
"ENABLE_DASHBOARD_SEARCH": true,
|
||||||
"ENABLE_COMBINED_LOGIN_REGISTRATION": true,
|
"ENABLE_COMBINED_LOGIN_REGISTRATION": true,
|
||||||
"ENABLE_GRADE_DOWNLOADS": true,
|
"ENABLE_GRADE_DOWNLOADS": true,
|
||||||
|
"ENABLE_LEARNER_RECORDS": false,
|
||||||
"ENABLE_MOBILE_REST_API": true,
|
"ENABLE_MOBILE_REST_API": true,
|
||||||
"ENABLE_OAUTH2_PROVIDER": true,
|
"ENABLE_OAUTH2_PROVIDER": true,
|
||||||
"ENABLE_THIRD_PARTY_AUTH": true
|
"ENABLE_THIRD_PARTY_AUTH": true
|
||||||
|
@ -49,6 +49,11 @@ RUN curl https://github.com/overhangio/edx-platform/commit/6dbf2eddf7a4563c04c3b
|
|||||||
# Fix upload of video transcripts to s3
|
# Fix upload of video transcripts to s3
|
||||||
# https://github.com/edx/edx-platform/pull/24800
|
# https://github.com/edx/edx-platform/pull/24800
|
||||||
RUN curl https://github.com/edx/edx-platform/commit/80fa2cae128e2a1fd8ab298351b7b36c9d139e6c.patch | git apply -
|
RUN curl https://github.com/edx/edx-platform/commit/80fa2cae128e2a1fd8ab298351b7b36c9d139e6c.patch | git apply -
|
||||||
|
# Make it possible to disable learner records globally
|
||||||
|
# https://github.com/edx/edx-platform/pull/25182
|
||||||
|
# https://github.com/overhangio/edx-platform/tree/overhangio/disable-learner-records-from-settings
|
||||||
|
RUN curl https://github.com/overhangio/edx-platform/commit/58f20a0547355080eeee346104a1719ad806902e.patch | git apply -
|
||||||
|
|
||||||
|
|
||||||
###### Download extra locales to /openedx/locale/contrib/locale
|
###### Download extra locales to /openedx/locale/contrib/locale
|
||||||
FROM minimal as locales
|
FROM minimal as locales
|
||||||
|
Loading…
Reference in New Issue
Block a user