From f8310a587c26b0965bab71abfeb2d018e414f572 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Mon, 15 Sep 2025 23:43:46 +0200 Subject: Clarify: Visibility hidden vs. archived (#7970) fix https://github.com/FreshRSS/FreshRSS/issues/7887 We have two concepts: how much a feed is shown or not (controlled by priority), and how often a feed is refreshed (or not, in which case it is archived). This PR removes the wording *Archived* from the *visibility* parameter, since this is not what it does. --- app/Models/Feed.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/Models/Feed.php') diff --git a/app/Models/Feed.php b/app/Models/Feed.php index f85db0f2f..e368a6807 100644 --- a/app/Models/Feed.php +++ b/app/Models/Feed.php @@ -38,6 +38,8 @@ class FreshRSS_Feed extends Minz_Model { public const PRIORITY_IMPORTANT = 20; public const PRIORITY_MAIN_STREAM = 10; public const PRIORITY_CATEGORY = 0; + public const PRIORITY_HIDDEN = -10; + /** @deprecated use PRIORITY_HIDDEN instead */ public const PRIORITY_ARCHIVED = -10; public const TTL_DEFAULT = 0; -- cgit v1.2.3