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/controllers/rb_taskboards_controller.rb

17 lines
499 B

include RbCommonHelper
class RbTaskboardsController < RbApplicationController
unloadable
def show
@statuses = Tracker.find_by_id(Task.tracker).issue_statuses
@story_ids = @sprint.stories.map{|s| s.id}
@last_updated = Task.find(:first,
:conditions => ["parent_id in (?)", @story_ids],
:order => "updated_on DESC")
respond_to do |format|
format.html { render :layout => "rb" }
end
end
end