1
0
Fork 0
find-us-lunch/config/routes.rb

11 lines
296 B
Ruby
Raw Normal View History

2014-10-02 16:10:36 -04:00
Rails.application.routes.draw do
2014-10-02 16:35:55 -04:00
get 'auth/:provider/callback', to: 'sessions#create'
get 'auth/failure', to: redirect('/')
get 'logout', to: 'sessions#destroy', as: 'logout'
2014-10-02 16:10:36 -04:00
2014-10-02 16:35:55 -04:00
resources :sessions, only: [ :create, :destroy ]
resources :home, only: [ :show ]
2014-10-02 16:10:36 -04:00
2014-10-02 16:35:55 -04:00
root to: 'home#show'
2014-10-02 16:10:36 -04:00
end