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

Improvement: settheme now works with preview domain

This commit is contained in:
iamcristye@outlook.com 2021-11-29 22:46:40 +08:00 committed by Régis Behmo
parent d4fe1260c1
commit 5604cd4bf8
2 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,7 @@ Note: Breaking changes between versions are indicated by "💥".
## Unreleased
- [Bugfix] Remove trailing slashes in docker-compose files for [compatibility with docker-compose v2 in WSL](https://github.com/docker/compose/issues/8558).
- [Improvement] `settheme` now works with preview domain.
## v12.1.7 (2021-11-18)

View File

@ -147,4 +147,6 @@ def get_all_openedx_domains(config: Config) -> List[str]:
get_typed(config, "LMS_HOST", str) + ":8000",
get_typed(config, "CMS_HOST", str),
get_typed(config, "CMS_HOST", str) + ":8001",
get_typed(config, "PREVIEW_LMS_HOST", str),
get_typed(config, "PREVIEW_LMS_HOST", str) + ":8000",
]