2018-08-27 14:37:06 +00:00
|
|
|
Rails.application.routes.draw do
|
2018-08-27 18:05:57 +00:00
|
|
|
get 'video_sessions/create'
|
2018-08-28 13:46:15 +00:00
|
|
|
devise_for :users, path: '', path_names: { sign_out: 'logout'}
|
|
|
|
devise_scope :user do
|
|
|
|
get '/logout', to: 'devise/sessions#destroy'
|
|
|
|
end
|
2018-08-28 14:00:54 +00:00
|
|
|
root to: 'pages#home'
|
2018-08-28 16:18:58 +00:00
|
|
|
get '/contacts', to: 'pages#index'
|
2018-08-27 18:05:57 +00:00
|
|
|
post '/sessions', to: 'video_sessions#create'
|
|
|
|
|
|
|
|
mount ActionCable.server, at: '/cable'
|
2018-08-27 14:37:06 +00:00
|
|
|
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
|
2018-08-28 14:00:54 +00:00
|
|
|
get '/home', to: 'pages#home'
|
2018-08-27 14:37:06 +00:00
|
|
|
end
|