Skip to content

Instantly share code, notes, and snippets.

@xhoy
Created April 12, 2016 08:11
Show Gist options
  • Save xhoy/a9586ca97ddbc8e03d82ceb409430d19 to your computer and use it in GitHub Desktop.
Save xhoy/a9586ca97ddbc8e03d82ceb409430d19 to your computer and use it in GitHub Desktop.
Rails.application.routes.draw do
resources :comments
resources :articles do
#works
resources :comments
#works
resources :comments, only: :index
#broken??
resources :comments, only: :test #why doesn't this work?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment