Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update routes for Rails 2.3.4.
  • Loading branch information
nikosd committed Oct 10, 2009
1 parent 15edcc6 commit 5d77850
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
11 changes: 11 additions & 0 deletions config/routes.rb
@@ -0,0 +1,11 @@
ActionController::Routing::Routes.draw do |map|
map.connect 'projects/:project_id/schedules', :controller => 'schedules', :action => 'index'
map.connect 'projects/:project_id/schedules/edit', :controller => 'schedules', :action => 'edit'
map.connect 'projects/:project_id/schedules/report', :controller => 'schedules', :action => 'report'
map.connect 'projects/:project_id/schedules/details', :controller => 'schedules', :action => 'details'
map.connect 'projects/:project_id/schedules/fill', :controller => 'schedules', :action => 'fill'
map.connect 'account/schedule/:user_id', :controller => 'schedules', :action => 'index'
map.connect 'account/schedule/:user_id/edit', :controller => 'schedules', :action => 'edit'
map.connect 'account/schedule/:user_id/default', :controller => 'schedules', :action => 'default'
map.connect 'my/schedule', :controller => 'schedules', :action => 'my_index'
end
9 changes: 0 additions & 9 deletions routes.rb

This file was deleted.

0 comments on commit 5d77850

Please sign in to comment.