done landing_page

This commit is contained in:
Benjamin Myara
2018-08-28 15:00:54 +01:00
parent e73df2ed65
commit daec345b50
7 changed files with 48 additions and 2 deletions

View File

@@ -1,10 +1,11 @@
Rails.application.routes.draw do
get 'video_sessions/create'
devise_for :users
root to: 'pages#call'
root to: 'pages#home'
get '/contacts', to: 'users#index'
post '/sessions', to: 'video_sessions#create'
mount ActionCable.server, at: '/cable'
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
get '/home', to: 'pages#home'
end