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-27 14:37:06 +00:00
|
|
|
devise_for :users
|
2018-08-28 14:00:54 +00:00
|
|
|
root to: 'pages#home'
|
2018-08-28 12:48:32 +00:00
|
|
|
get '/contacts', to: 'users#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
|