mailr/config/routes.rb

27 lines
1,016 B
Ruby
Raw Normal View History

ActionController::Routing::Routes.draw do |map|
2009-02-07 22:22:25 +01:00
map.resources :folders, :requirements => {:id => /[^\/]+/}
2009-02-08 16:00:26 +01:00
map.resources :contacts
2009-02-07 22:22:25 +01:00
# Add your own custom routes here.
# The priority is based upon order of creation: first created -> highest priority.
# Here's a sample route:
# map.connect 'products/:id', :controller => 'catalog', :action => 'view'
# Keep in mind you can assign values other than :controller and :action
map.connect '', :controller=>'webmail', :action=>'index'
2009-02-05 16:55:24 +01:00
map.connect 'webmail', :controller=>'webmail', :action=>'index'
2009-02-05 16:55:24 +01:00
map.connect 'webmail/:action', :controller=>'webmail'
2009-02-07 20:07:53 +01:00
map.connect '/contact/:action', :controller=>'contact'
map.connect 'admin/main', :controller=> 'login', :action=>'logout'
# Allow downloading Web Service WSDL as a file with an extension
# instead of a file named 'wsdl'
map.connect ':controller/service.wsdl', :action => 'wsdl'
# Install the default route as the lowest priority.
map.connect ':controller/:action/:id'
end