Skip to content

Instantly share code, notes, and snippets.

@trek
Last active February 29, 2016 14:14
Show Gist options
  • Save trek/b53471016949b96d67bd to your computer and use it in GitHub Desktop.
Save trek/b53471016949b96d67bd to your computer and use it in GitHub Desktop.
resources :users, only: [:show] do
# even if a client knows address id #55, it also neeeds to know which
# user that belongs to.
resources :addresses, only: [:index, :create, :show, :update]
end
resources :users, only: [:show] do
resources :addresses, only: [:index, :create], controller: :user_addresses
end
resources :addresses, only: [:show, :update]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment