Initial commit

This commit is contained in:
2023-01-27 22:55:09 +11:00
commit 833f3ea8b2
130 changed files with 5637 additions and 0 deletions

14
app/actions/feeds/rss.rb Normal file
View File

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