mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
8 lines
254 B
Ruby
8 lines
254 B
Ruby
ActionController::Routing::Routes.draw do |map|
|
|
map.resources :users, :only => :index
|
|
map.resources :admins, :only => :index
|
|
map.root :controller => :home
|
|
|
|
map.connect ':controller/:action/:id'
|
|
map.connect ':controller/:action/:id.:format'
|
|
end
|