diff options
| author | 2024-07-24 19:37:30 +0200 | |
|---|---|---|
| committer | 2024-07-24 19:37:30 +0200 | |
| commit | a6d7bdc7426af55ffde71ab626a096a98f650974 (patch) | |
| tree | 38bd6086210364abb502c64d20b8106ed25cc0fe /app/views | |
| parent | 3dca6ab1eef70e2e6fe19388238f7ec26f3c69af (diff) | |
New global option to automatically add articles to favourites (#6648)
fix https://github.com/FreshRSS/FreshRSS/issues/6639
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/configure/reading.phtml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/views/configure/reading.phtml b/app/views/configure/reading.phtml index a71efddbd..474700117 100644 --- a/app/views/configure/reading.phtml +++ b/app/views/configure/reading.phtml @@ -368,6 +368,18 @@ <p class="help"><?= _i('help') ?> <?= _t('sub.feed.filteractions.help') ?></p> </div> </div> + + <div class="form-group"> + <label class="group-name" for="filteractions_star"><?= _t('conf.reading.star.when') ?></label> + <div class="group-controls"> + <textarea name="filteractions_star" id="filteractions_star" class="w100"><?php + foreach (FreshRSS_Context::userConf()->filtersAction('star') as $filterStar) { + echo $filterStar->getRawInput(), PHP_EOL; + } + ?></textarea> + <p class="help"><?= _i('help') ?> <?= _t('sub.feed.filteractions.help') ?></p> + </div> + </div> </fieldset> <fieldset> |
