This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
2007-09-27 01:15:22 -04:00
|
|
|
ActionController::Routing::Routes.draw do |map|
|
2008-04-13 04:16:26 -04:00
|
|
|
map.connect '', :controller => 'pages', :action => 'default_action'
|
|
|
|
map.resources :pages, :roles, :sessions, :styles, :galleries, :tag_images,
|
|
|
|
:friends, :experiences, :invitations, :peoples, :discussions
|
|
|
|
map.resources :breweries do |breweries|
|
|
|
|
breweries.resources :beers
|
|
|
|
end
|
2007-09-27 01:15:22 -04:00
|
|
|
map.connect ':controller/:action/:id.:format'
|
|
|
|
map.connect ':controller/:action/:id'
|
|
|
|
end
|