]> git.openstreetmap.org Git - rails.git/blob - app/views/changeset_comments/feeds/timeout.rss.builder
Add frozen_string_literal comments to ruby files
[rails.git] / app / views / changeset_comments / feeds / timeout.rss.builder
1 # frozen_string_literal: true
2
3 xml.rss("version" => "2.0",
4         "xmlns:dc" => "http://purl.org/dc/elements/1.1/") do
5   xml.channel do
6     if params[:changeset_id]
7       xml.title t("changeset_comments.feeds.show.title_particular", :changeset_id => params[:changeset_id])
8     else
9       xml.title t("changeset_comments.feeds.show.title_all")
10     end
11     xml.link root_url
12     xml.description t(".sorry")
13   end
14 end