aboutsummaryrefslogtreecommitdiff
path: root/app/Models/View.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-10-14 15:43:43 +0200
committerGravatar GitHub <noreply@github.com> 2025-10-14 15:43:43 +0200
commitb7bd18148e65bbdd6be442036a295eb43ca1501e (patch)
tree4fba0694a3c45f015f2ed83ebd2356d169241f79 /app/Models/View.php
parentfaaa770bc0b396d6e842fe816012661f07eac395 (diff)
Option to show user labels instead of tags in RSS share (#8112)
* Option to show user labels instead of tags in RSS share fix https://github.com/FreshRSS/FreshRSS/discussions/8108#discussioncomment-14668813 <img width="711" height="182" alt="image" src="https://github.com/user-attachments/assets/8effb2cd-fffb-4f00-b628-54e963e8b2dc" />
Diffstat (limited to 'app/Models/View.php')
-rw-r--r--app/Models/View.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Models/View.php b/app/Models/View.php
index 11ca3a105..104afb3c0 100644
--- a/app/Models/View.php
+++ b/app/Models/View.php
@@ -78,7 +78,7 @@ class FreshRSS_View extends Minz_View {
// Export / Import
public string $content;
/** @var array<string,array<string>> */
- public array $entryIdsTagNames;
+ public array $entryIdsTagNames = [];
public string $list_title;
public int $queryId;
public string $type;
@@ -111,6 +111,7 @@ class FreshRSS_View extends Minz_View {
public bool $internal_rendering = false;
public string $description = '';
public string $image_url = '';
+ public bool $publishLabelsInsteadOfTags = false;
// Content preview
public string $fatalError;