forked from External/greenlight
12 lines
377 B
Ruby
12 lines
377 B
Ruby
Rails.application.routes.draw do
|
|
get 'bbb/join/:id', to: 'bbb#join', as: :bbb_join
|
|
get 'bbb/close'
|
|
|
|
get 'meeting(/:id)', to: 'landing#index'
|
|
get '/auth/:provider/callback', to: 'sessions#create'
|
|
get '/logout', to: 'sessions#destroy'
|
|
|
|
root to: 'landing#index'
|
|
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
|
|
end
|