parent
612b86ae7d
commit
4c322e1dbe
@ -0,0 +1,17 @@ |
||||
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 => "backlogs" } |
||||
end |
||||
end |
||||
|
||||
end |
@ -0,0 +1,3 @@ |
||||
<div class="sprint"> |
||||
### TODO ### |
||||
</div> |
Loading…
Reference in new issue