Skip to content

Instantly share code, notes, and snippets.

@kenmazaika
Created February 7, 2017 00:37
Show Gist options
  • Save kenmazaika/f2631568954be07bf62ee1c0aeba6cbf to your computer and use it in GitHub Desktop.
Save kenmazaika/f2631568954be07bf62ee1c0aeba6cbf to your computer and use it in GitHub Desktop.
Rails.application.routes.draw do
devise_for :users
root 'places#index'
resources :places do
resources :comments, only: :create
resources :photos, only: :create
end
# THIS LINE HERE IS MISSING
resources :users, only: :show
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment