Skip to content

Instantly share code, notes, and snippets.

@masonfmatthews
Created February 9, 2015 21:08
Show Gist options
  • Save masonfmatthews/f6d9c9be2ddd9c24c5f5 to your computer and use it in GitHub Desktop.
Save masonfmatthews/f6d9c9be2ddd9c24c5f5 to your computer and use it in GitHub Desktop.
Routes
Rails.application.routes.draw do
resources :photos do
member do
get 'edit_tags'
post 'edit_tags'
post 'update_tags'
end
collection do
get 'dashboard'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment