1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-11 17:51:01 +00:00

Apprise Service Urls per feed

This commit is contained in:
fuchsrot 2023-08-26 09:16:41 +02:00 committed by Frédéric Guillot
parent 939a91e99d
commit 32d33104a4
27 changed files with 58 additions and 8 deletions

View file

@ -161,7 +161,8 @@ func (f *FeedQueryBuilder) GetFeeds() (model.Feeds, error) {
c.title as category_title,
c.hide_globally as category_hidden,
fi.icon_id,
u.timezone
u.timezone,
f.apprise_service_urls
FROM
feeds f
LEFT JOIN
@ -226,6 +227,7 @@ func (f *FeedQueryBuilder) GetFeeds() (model.Feeds, error) {
&feed.Category.HideGlobally,
&iconID,
&tz,
&feed.AppriseServiceURLs,
)
if err != nil {