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|
|
2007-11-27 20:09:41 -05:00
|
|
|
map.resources :beers, :breweries, :pages, :discussions
|
2007-09-27 02:19:14 -04:00
|
|
|
|
2007-09-27 01:15:22 -04:00
|
|
|
map.connect ':controller/:action/:id.:format'
|
|
|
|
map.connect ':controller/:action/:id'
|
2007-10-03 02:34:21 -04:00
|
|
|
|
|
|
|
map.connect '/', :controller => 'pages', :action => 'default_action'
|
2007-09-27 01:15:22 -04:00
|
|
|
end
|