mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-17 06:52:27 +01:00
add RSS feed to projects index
This commit is contained in:
parent
1bd502cd04
commit
a5c6ba5f7d
23
app/views/api/projects/index.rss.builder
Normal file
23
app/views/api/projects/index.rss.builder
Normal file
@ -0,0 +1,23 @@
|
||||
#encoding: UTF-8
|
||||
|
||||
xml.instruct! :xml, version: "1.0"
|
||||
xml.rss version: "2.0" do
|
||||
xml.channel do
|
||||
xml.title "#{t('app.public.projects_list.the_fablab_projects')} - #{Setting.find_by(name: 'fablab_name').value}"
|
||||
xml.description t('app.public.projects_list.all_projects')
|
||||
xml.author Setting.find_by(name: 'fablab_name').value
|
||||
xml.link request.base_url + "/#!/projects"
|
||||
xml.language I18n.locale.to_s
|
||||
|
||||
@projects.each do |project|
|
||||
xml.item do
|
||||
xml.guid project.id
|
||||
xml.pubDate project.created_at.strftime("%F %T")
|
||||
xml.title project.name
|
||||
xml.link request.base_url + "/#!/projects/" + project.slug
|
||||
xml.author project.author.first_name
|
||||
xml.description project.description
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
x
Reference in New Issue
Block a user