mirror of
https://github.com/TracksApp/tracks.git
synced 2026-02-15 11:48:07 +01:00
get project integrations and login controller tests running
This commit is contained in:
parent
59a4d5ede0
commit
96db48dd86
36 changed files with 179 additions and 223 deletions
12
app/views/projects/index.atom.builder
Normal file
12
app/views/projects/index.atom.builder
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
atom_feed do |feed|
|
||||
feed.title(@feed_title)
|
||||
feed.subtitle(@feed_description)
|
||||
feed.updated(@projects.last.updated_at)
|
||||
|
||||
@projects.each do |project|
|
||||
feed.entry(project) do |entry|
|
||||
entry.title(h(project.name))
|
||||
entry.content(project_summary(project), :type => :html)
|
||||
end
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue