mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-25 11:01:12 +00:00
rss dates
This commit is contained in:
parent
ee1dd612fb
commit
637e0376d4
1 changed files with 17 additions and 0 deletions
|
@ -44,6 +44,10 @@ class RssFeed(Feed):
|
||||||
"""link to the status"""
|
"""link to the status"""
|
||||||
return item.local_path
|
return item.local_path
|
||||||
|
|
||||||
|
def item_pubdate(self, item):
|
||||||
|
"""publication date of the item"""
|
||||||
|
return item.published_date
|
||||||
|
|
||||||
|
|
||||||
class RssReviewsOnlyFeed(Feed):
|
class RssReviewsOnlyFeed(Feed):
|
||||||
"""serialize user's reviews in rss feed"""
|
"""serialize user's reviews in rss feed"""
|
||||||
|
@ -82,6 +86,10 @@ class RssReviewsOnlyFeed(Feed):
|
||||||
"""link to the status"""
|
"""link to the status"""
|
||||||
return item.local_path
|
return item.local_path
|
||||||
|
|
||||||
|
def item_pubdate(self, item):
|
||||||
|
"""publication date of the item"""
|
||||||
|
return item.published_date
|
||||||
|
|
||||||
|
|
||||||
class RssQuotesOnlyFeed(Feed):
|
class RssQuotesOnlyFeed(Feed):
|
||||||
"""serialize user's quotes in rss feed"""
|
"""serialize user's quotes in rss feed"""
|
||||||
|
@ -120,6 +128,10 @@ class RssQuotesOnlyFeed(Feed):
|
||||||
"""link to the status"""
|
"""link to the status"""
|
||||||
return item.local_path
|
return item.local_path
|
||||||
|
|
||||||
|
def item_pubdate(self, item):
|
||||||
|
"""publication date of the item"""
|
||||||
|
return item.published_date
|
||||||
|
|
||||||
|
|
||||||
class RssCommentsOnlyFeed(Feed):
|
class RssCommentsOnlyFeed(Feed):
|
||||||
"""serialize user's quotes in rss feed"""
|
"""serialize user's quotes in rss feed"""
|
||||||
|
@ -157,3 +169,8 @@ class RssCommentsOnlyFeed(Feed):
|
||||||
def item_link(self, item):
|
def item_link(self, item):
|
||||||
"""link to the status"""
|
"""link to the status"""
|
||||||
return item.local_path
|
return item.local_path
|
||||||
|
|
||||||
|
def item_pubdate(self, item):
|
||||||
|
"""publication date of the item"""
|
||||||
|
return item.published_date
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue