📝(core) documentation

Documentation is a way to document things

Signed-off-by: charles <charles.englebert@protonmail.com>
This commit is contained in:
charles
2026-02-19 13:17:57 +01:00
parent 6a0d65b4f4
commit 6742a23759
2 changed files with 12 additions and 0 deletions
+1
View File
@@ -22,6 +22,7 @@ and this project adheres to
- 🔧(project) add DJANGO_EMAIL_URL_APP environment variable #1825
- ✨(frontend) activate Find search #1834
- ✨ handle searching on subdocuments #1834
- ✨(backend) add search feature flags #1897
### Changed
+11
View File
@@ -39,3 +39,14 @@ OIDC_STORE_REFRESH_TOKEN_KEY="<your-32-byte-encryption-key==>"
`OIDC_STORE_REFRESH_TOKEN_KEY` must be a valid Fernet key (32 url-safe base64-encoded bytes).
To create one, use the `bin/generate-oidc-store-refresh-token-key.sh` command.
## Feature flags
The Find search integration is controlled by two feature flags:
- `flag_find_hybrid_search`
- `flag_find_full_text_search`
If a user has both flags activated the most advanced search is used (hybrid > full text > title).
A user with no flag will default to the basic title search.
Feature flags can be activated through the admin interface.