|
Revision 1590, 0.6 kB
(checked in by jm3, 6 months ago)
|
yeah, digging out / digging deeper
|
| Line | |
|---|
| 1 |
ActionController::Routing::Routes.draw do |map| |
|---|
| 2 |
|
|---|
| 3 |
map.notifier 'send', :controller => 'reminder', :action => 'send_daily' |
|---|
| 4 |
|
|---|
| 5 |
map.login 'login', :controller => 'access', :action => 'login' |
|---|
| 6 |
map.logout 'logout', :controller => 'access', :action => 'logout' |
|---|
| 7 |
map.apply_for_beta 'apply_for_beta', :controller => 'access', :action => 'apply_for_beta' |
|---|
| 8 |
|
|---|
| 9 |
map.root :controller => "reminder" |
|---|
| 10 |
|
|---|
| 11 |
# See how all your routes lay out with "rake routes" |
|---|
| 12 |
|
|---|
| 13 |
map.connect ':controller/:action/:id' |
|---|
| 14 |
map.connect ':controller/:action/:id.:format' |
|---|
| 15 |
end |
|---|