routes for homepage, redirections; remove defaults
| 17 | 29 | |
|---|---|---|
| 1 | 1 | ActionController::Routing::Routes.draw do |map| |
| 2 | 2 | |
| 3 | map.root :controller => "activities", :action => 'index' | |
| 3 | map.root :controller => 'workouts', :action => 'today' | |
| 4 | 4 | |
| 5 | map.resources :redirections | |
| 6 | ||
| 5 | 7 | map.resources :activities do |map| |
| 6 | 8 | map.resources :exercises, :name_prefix => '' |
| 7 | 9 | end |
| --- | --- | |
| 32 | 34 | |
| 33 | 35 | |
| 34 | 36 | # 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' | |
| 37 | 39 | end |
