Implemented refresh URL

This commit is contained in:
jfederico
2016-10-18 16:23:52 -04:00
parent e9f77b4e2e
commit 0d216adc52
6 changed files with 46 additions and 15 deletions

View File

@ -1,10 +1,11 @@
Rails.application.routes.draw do
get 'bbb/join/:id', to: 'bbb#join', as: :bbb_join
get 'meeting(/:id)', to: 'landing#index'
get '/meeting/new', to: 'landing#new_meeting', as: :new_meeting
get '/meeting(/:id)', to: 'landing#index', as: :landing, :resource => "meeting"
get '/auth/:provider/callback', to: 'sessions#create'
get '/logout', to: 'sessions#destroy'
root to: 'landing#index'
root to: 'landing#index', :resource => "meeting"
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end