Skip to content

Instantly share code, notes, and snippets.

@pramatias
Created January 12, 2011 15:46
Show Gist options
  • Save pramatias/776331 to your computer and use it in GitHub Desktop.
Save pramatias/776331 to your computer and use it in GitHub Desktop.
#config/routes.rb
#**before
#/chatters
#/chatters/1
#/chats
#/chats/1
ActionController::Routing::Routes.draw do |map|
map.resources :chatters
map.resources :chats
#**after
#chatters
#chatters/1
#chatters/1/chats
#chatters/1/chats/1
ActionController::Routing::Routes.draw do |map|
map.resources :chatters do
map.resources :chats
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment