We usually create nested controllers with the main controller as the module, and the nested controller as the specialization, e.g. Users::DeletionsController or Traces::IconsController. This then leaves the topic of whether the feed resource is plural, and whether we are then showing a singular feed or showing a list (index) of objects. The routes are carefully named so that we have `changesets_comments_feed_path` (the comments feed for all changesets) vs `changeset_comment_feed_path(changeset)` (the comments for a singular changeset).
14 lines
502 B
Ruby
14 lines
502 B
Ruby
xml.item do
|
|
xml.title t(".comment", :author => comment.author.display_name, :changeset_id => comment.changeset.id.to_s)
|
|
|
|
xml.link changeset_url(comment.changeset, :anchor => "c#{comment.id}")
|
|
xml.guid changeset_url(comment.changeset, :anchor => "c#{comment.id}")
|
|
|
|
xml.description do
|
|
xml.cdata! render(:partial => "comment", :object => comment, :formats => [:html])
|
|
end
|
|
|
|
xml.dc :creator, comment.author.display_name if comment.author
|
|
|
|
xml.pubDate comment.created_at.to_fs(:rfc822)
|
|
end
|