Default view filters (#4962)

* Merge/adapt from yoshnopa:defaultDetails
* Deprecate and remove default filter calls
* Fix weird behaviour when clicking set as default
* Update deprecated get/set default filter resolvers
* Add config migration
---------
Co-authored-by: yoshnopa <usingusenet@protonmail.com>
This commit is contained in:
WithoutPants
2024-06-18 10:51:52 +10:00
committed by GitHub
parent 4be60310c3
commit f9a624b803
59 changed files with 611 additions and 403 deletions

View File

@@ -0,0 +1 @@
This migration moves default filters from the database into the configuration file. A backup of the current `config.yml` will be created in the same directory with the name `config.yml.59.<date and time>`. The exact filename is written to the log.

View File

@@ -2,10 +2,12 @@ import migration32 from "./32.md";
import migration39 from "./39.md";
import migration48 from "./48.md";
import migration58 from "./58.md";
import migration60 from "./60.md";
export const migrationNotes: Record<number, string> = {
32: migration32,
39: migration39,
48: migration48,
58: migration58,
60: migration60,
};