Created
February 7, 2017 00:37
-
-
Save kenmazaika/f2631568954be07bf62ee1c0aeba6cbf to your computer and use it in GitHub Desktop.
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 | |
| 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