Add a feed for statuses

This commit is contained in:
2023-04-14 20:19:49 +10:00
parent d3c4723f17
commit c4a1a39740
6 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
module Adamantium
module Actions
module Feeds
class StatusesRss < Action
include Deps["views.feeds.statuses_rss"]
def handle(req, res)
res.content_type = "application/rss+xml"
res.render statuses_rss, format: :xml
end
end
end
end
end