We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 480c3b5 commit 135ca16Copy full SHA for 135ca16
2 files changed
CHANGELOG.md
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
- Add CI testing for Django 5.2 (@nickmoreton)
12
13
### Fixed
14
+- Fix incorrect WAGTAIL_SITE_NAME in settings (@marteinn)
15
+- Add WAGTAILADMIN_BASE_URL in settings (@marteinn)
16
17
### Removed
18
- Drop Wagtail testing for 5.0 (@nickmoreton)
tests/settings.py
@@ -74,6 +74,7 @@
74
TEMPLATE_DEBUG = DEBUG
75
ROOT_URLCONF = "tests.urls"
76
77
-WAGTAIL_SITE_NAME = ("Test Site",)
+WAGTAIL_SITE_NAME = "Test Site"
78
+WAGTAILADMIN_BASE_URL = "http://localhost:8000"
79
SITE_ID = 1
80
STATIC_URL = "/static/"
0 commit comments