From e070c3ed2bec4ea4a6c2a216a5c836d1e02ab381 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Wed, 15 Oct 2025 00:08:40 +0200 Subject: Implement search form (#8103) * Add UI for advanced search To help users with the seach operators. Obviously not as powerful as a manually-written search query. Lack in particular negation and logical *and* for now, but I might try to do something about it. image * Consistency: allow multiple user queries like S:1,2 * Fix user query and add tests --- app/Models/View.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'app/Models/View.php') diff --git a/app/Models/View.php b/app/Models/View.php index 104afb3c0..cf5c30e15 100644 --- a/app/Models/View.php +++ b/app/Models/View.php @@ -30,6 +30,10 @@ class FreshRSS_View extends Minz_View { public array $tagsForEntries; public bool $excludeMutedFeeds; + // Search + /** @var array where the key is the label ID */ + public array $labels; + // Subscriptions public bool $displaySlider = false; public bool $load_ok; -- cgit v1.2.3