OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/helpers/taskboards_helper.rb

7 lines
236 B

module TaskboardsHelper
unloadable
def impediments_by_position_for_status sprint, project, status
sprint.impediments(project).select{ |i| i.status_id == status.id }.sort_by {|i| i.position.present? ? i.position : 0 }
end
end