-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release' into 'master'
Release 77.0 » Wagtail 6.1 Upgrade See merge request buckinghamshire-council/bc!730
- Loading branch information
Showing
14 changed files
with
775 additions
and
372 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
from .base import * # noqa | ||
|
||
SECRET_KEY = "fake_secret_key_to_run_tests" | ||
|
||
RECAPTCHA_PUBLIC_KEY = "dummy_public_key" | ||
RECAPTCHA_PRIVATE_KEY = "dummy_private_key" | ||
|
||
RESPOND_COMPLAINTS_WEBSERVICE = "TestCreateComplaints" | ||
RESPOND_FOI_WEBSERVICE = "TestCreateFOI" | ||
RESPOND_SAR_WEBSERVICE = "TestCreateSAR" | ||
RESPOND_COMMENTS_WEBSERVICE = "TestCreateComments" | ||
RESPOND_COMPLIMENTS_WEBSERVICE = "TestCreateCompliments" | ||
RESPOND_DISCLOSURES_WEBSERVICE = "TestCreateDisclosures" | ||
|
||
SECURE_SSL_REDIRECT = False | ||
|
||
WAGTAILSEARCH_BACKENDS = {"default": {"BACKEND": "wagtail.search.backends.database"}} | ||
|
||
CACHES = { | ||
"default": { | ||
"BACKEND": "django.core.cache.backends.db.DatabaseCache", | ||
"LOCATION": "database_cache", | ||
} | ||
} | ||
|
||
# Ignore proxy count in tests | ||
XFF_ALWAYS_PROXY = False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Technical debt | ||
|
||
This page describes known technical debt or shortcomings in the project. | ||
|
||
## Non-family info sites and pages using `family_info` Django application's code | ||
|
||
There are subsites set up using `family_info` Django application's models that are not family info subsite. | ||
|
||
A likely good idea would be to refactor the `family_info` Django application to be more generic | ||
and move the family info specific code to a separate Django application. | ||
|
||
This may be especially confusing for new developers trying to find their way in the codebase. | ||
|
||
Short-term actions to address: | ||
|
||
- Any FIS-named code should be reviewed and checked if it should be called something else. | ||
- Add comments around FIS-named things whether they are actually FIS-specific. | ||
- Document this somewhere else | ||
|
||
Ideally: | ||
|
||
- Formulate plan for renaming the code. | ||
- Migrate existing subsites to use generic, non-FIS code as much as possible. | ||
- Any new subsites should use generic, non-FIS code only. | ||
|
||
We don't want to be in situation where FIS-specific code is used for non-FIS subsites. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.