forked from External/greenlight
wait for moderator with action cable
This commit is contained in:
@ -31,6 +31,12 @@ Rails.application.configure do
|
||||
|
||||
config.action_mailer.perform_caching = false
|
||||
|
||||
# action cable socket URI
|
||||
config.action_cable.url = "ws://localhost/cable"
|
||||
|
||||
# allowed action cable origins
|
||||
Rails.application.config.action_cable.allowed_request_origins = ['http://localhost']
|
||||
|
||||
# Print deprecation notices to the Rails logger.
|
||||
config.active_support.deprecation = :log
|
||||
|
||||
|
@ -1,4 +1,7 @@
|
||||
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
|
||||
Rails.application.routes.draw do
|
||||
mount ActionCable.server => '/cable'
|
||||
|
||||
resources :users, only: [:edit, :update]
|
||||
get '/users/logout', to: 'sessions#destroy', as: :user_logout
|
||||
|
||||
@ -7,9 +10,9 @@ Rails.application.routes.draw do
|
||||
# There are two resources [meetings|rooms]
|
||||
# meetings offer a landing page for NON authenticated users to create and join session in BigBlueButton
|
||||
# rooms offer a customized landing page for authenticated users to create and join session in BigBlueButton
|
||||
get '/:resource(/:id)', to: 'landing#index', as: :resource
|
||||
get '/:resource/:id', to: 'landing#index', as: :resource
|
||||
get '/:resource/:id/join', to: 'bbb#join', as: :bbb_join, defaults: { :format => 'json' }
|
||||
get '/:resource/:id/wait', to: 'landing#wait_for_moderator'
|
||||
|
||||
root to: 'landing#index', :resource => "meetings"
|
||||
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
|
||||
end
|
||||
|
Reference in New Issue
Block a user