mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
Add rss.item filter
This commit is contained in:
parent
3c5011cd56
commit
88a7cdbc3d
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…
Reference in a new issue