Files
danbooru/app/views/forum_topics/index.atom.builder
r888888888 1478eff561 fixes #3098
2017-05-30 12:36:07 -07:00

17 lines
584 B
Ruby

atom_feed(root_url: forum_topics_path(host: Danbooru.config.hostname, only_path: false)) do |feed|
feed.title("Forum Topics")
feed.updated(@forum_topics.first.try(:updated_at))
@forum_topics.each do |topic|
feed.entry(topic, published: topic.created_at, updated: topic.updated_at) do |entry|
entry.title("[#{topic.category_name}] #{topic.title}")
entry.content(format_text(topic.original_post.body), type: "html")
entry.author do |author|
author.name(topic.creator.name)
author.uri(user_url(topic.creator_id))
end
end
end
end