avatar

29

routes for homepage, redirections; remove defaults

by chrisk, 19 Jun, 2007 07:11 PM
17 29  
11 ActionController::Routing::Routes.draw do |map|
22 
3   map.root :controller => "activities", :action => 'index'
3   map.root :controller => 'workouts', :action => 'today'
44 
5   map.resources :redirections
6 
57   map.resources :activities do |map|
68     map.resources :exercises, :name_prefix => ''
79   end
------
3234 
3335 
3436   # Install the default routes as the lowest priority.
35   map.connect ':controller/:action/:id'
36   map.connect ':controller/:action/:id.:format'
37   # map.connect ':controller/:action/:id'
38   # map.connect ':controller/:action/:id.:format'
3739 end