summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDriverXX <thegio.f@gmail.com>2018-12-24 12:02:10 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2019-01-10 10:35:48 +0100
commit71ce1485544612f38d09f3d64d80a2e4f829f457 (patch)
tree9a61d65536a9c76683f2711f5b3b53c5637cfe5f
parent3c16dd34d9a7b21a72e57b9733decb452f84388b (diff)
Return also folderId with "news:updater:all-feeds"
-rw-r--r--lib/Command/Updater/AllFeeds.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Command/Updater/AllFeeds.php b/lib/Command/Updater/AllFeeds.php
index 8947c714e..2337f7aa8 100644
--- a/lib/Command/Updater/AllFeeds.php
+++ b/lib/Command/Updater/AllFeeds.php
@@ -49,7 +49,8 @@ class AllFeeds extends Command
foreach ($feeds as $feed) {
$result['feeds'][] = [
'id' => $feed->getId(),
- 'userId' => $feed->getUserId()
+ 'userId' => $feed->getUserId(),
+ 'folderId' => $feed->getFolderId(),
];
}