zeus.ugent.be/lib/helpers/projects.rb

6 lines
132 B
Ruby
Raw Normal View History

2016-10-03 19:56:08 +00:00
module ProjectsHelper
def all_projects
2019-10-07 23:43:36 +00:00
@items.find_all('/projects/*').sort_by{|project| -(project[:priority] || 0)}
2016-10-03 19:56:08 +00:00
end
end