mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Merge pull request #5538 from halfdan/feature/app-watch
Change Grunt watch, new rss.item filter
This commit is contained in:
commit
2bdaf773e2
1 changed files with 3 additions and 1 deletions
|
@ -179,7 +179,9 @@ generateFeed = function generateFeed(data) {
|
|||
}
|
||||
});
|
||||
|
||||
feed.item(item);
|
||||
filters.doFilter('rss.item', item, post).then(function then(item) {
|
||||
feed.item(item);
|
||||
});
|
||||
});
|
||||
|
||||
return filters.doFilter('rss.feed', feed).then(function then(feed) {
|
||||
|
|
Loading…
Add table
Reference in a new issue