11 lines
304 B
Ruby
11 lines
304 B
Ruby
ActionController::Routing::Routes.draw do |map|
|
|
map.resources :roles
|
|
|
|
map.resources :beers, :breweries, :pages, :discussions, :peoples
|
|
|
|
map.connect ':controller/:action/:id.:format'
|
|
map.connect ':controller/:action/:id'
|
|
|
|
map.connect '/', :controller => 'pages', :action => 'default_action'
|
|
end
|