otwarchive-symphonyarchive/app/views/admin_posts/index.rss.builder

20 lines
478 B
Text
Raw Normal View History

2026-03-11 22:22:11 +00:00
xml.instruct! :xml, :version => "1.0"
xml.rss :version => "2.0" do
xml.channel do
xml.title "AO3 News"
xml.description "Latest updates from archiveofourown.org"
xml.link admin_posts_url
@admin_posts.each do |post|
xml.item do
xml.title post.title
xml.description post.content
xml.pubDate post.created_at.to_fs(:rfc822)
xml.link admin_post_url(post)
xml.guid admin_post_url(post)
end
end
end
end