Skip to content

Instantly share code, notes, and snippets.

@mcade
Created March 26, 2014 08:40
Show Gist options
  • Save mcade/9778958 to your computer and use it in GitHub Desktop.
Save mcade/9778958 to your computer and use it in GitHub Desktop.
config/routes.rb
end
resources :sessions, only: [:new, :create, :destroy]
resources :microposts, only: [:create, :destroy] do
- member { post :vote }
- member { post :retweet}
+ member do
+ post :vote
+ post :retweet
+ end
end
resources :relationships, only: [:create, :destroy]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment