Skip to content

Commit

Permalink
Fixed edit of a sprint
Browse files Browse the repository at this point in the history
  • Loading branch information
ilopmar committed Apr 12, 2011
1 parent 7f3596f commit 934f832
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/routes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
sprints.connect 'projects/:project_id/sprints', :action => 'index'
sprints.connect 'projects/:project_id/sprints/graph_code', :action => 'graph_code'
sprints.connect 'projects/:project_id/sprints/new', :action => 'new'
sprints.sprint 'projects/:project_id/sprints/:id', :action => 'show'
sprints.connect 'projects/:project_id/sprints/:id/:task_id', :action => 'show'
sprints.connect 'projects/:project_id/sprints/:id', :action => 'show'
sprints.connect 'projects/:project_id/sprints/:id/edit', :action => 'edit'
sprints.connect 'projects/:project_id/sprints/:id/:task_id', :action => 'show'
end
sprints.with_options :conditions => {:method => :post} do |sprints|
sprints.connect 'projects/:project_id/sprints/:sprint/:us/assign_us', :action => 'assign_us'
Expand Down

0 comments on commit 934f832

Please sign in to comment.