7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-07 08:30:48 +00:00

Add patches that enable adding settings during build process (collectsatic and i18ncompile).

This commit is contained in:
Eric Herrera 2021-03-03 16:00:02 -05:00 committed by Régis Behmo
parent 070b75caa4
commit 6ca863e04c
3 changed files with 5 additions and 0 deletions

View File

@ -6,6 +6,7 @@ Note: Breaking changes between versions are indicated by "💥".
- [Bugfix] Fix parsing of YAML CLI arguments that include equal "=" signs.
- [Bugfix] Fix minor edge case in `long_to_base64` utility function.
- [Improvement] Add openedx patches to add settings during build process.
## v11.2.3 (2021-02-20)

View File

@ -17,3 +17,5 @@ XQUEUE_INTERFACE = {
DATABASES = {
"default": {},
}
{{ patch("openedx-common-assets-settings") }}

View File

@ -16,3 +16,5 @@ derive_settings(__name__)
LOCALE_PATHS.append("/openedx/locale/contrib/locale")
LOCALE_PATHS.append("/openedx/locale/user/locale")
{{ patch("openedx-common-i18n-settings") }}