Created
February 9, 2015 21:08
-
-
Save masonfmatthews/f6d9c9be2ddd9c24c5f5 to your computer and use it in GitHub Desktop.
Routes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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