Add rss feed minified

This commit is contained in:
Paul Nettleton 2022-12-22 16:04:42 -06:00
parent c3717f6979
commit a9ee9031c3

View File

@ -61,6 +61,15 @@ class Feed {
}
}
toJSONMinified() {
return {
id: this.id,
entityType: this.entityType,
entityId: this.entityId,
feedUrl: this.feedUrl
}
}
getEpisodePath(id) {
var episode = this.episodes.find(ep => ep.id === id)
if (!episode) return null