Skip to content

Instantly share code, notes, and snippets.

@thomasnaude
Created August 9, 2017 08:59
Show Gist options
  • Save thomasnaude/871d3dab5495cc21a4a90c6b690a27bf to your computer and use it in GitHub Desktop.
Save thomasnaude/871d3dab5495cc21a4a90c6b690a27bf to your computer and use it in GitHub Desktop.
beyound_crud_routes
Rails.application.routes.draw do
resources :restaurants do
collection do
get 'top', to: 'restaurants#top'
end
member do
get 'chef', to: 'restaurants#chef'
end
resources :reviews, shallow: :true
end
namespace :admin do
resources :restaurants, only: :index
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment