diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 4cc52a0e..30566943 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -46,4 +46,14 @@ class ApplicationController < ActionController::Base USER_NAME_LIMIT end helper_method :user_name_limit + + def user_name_limit + USER_NAME_LIMIT + end + helper_method :user_name_limit + + def bigbluebutton_endpoint_default? + Rails.configuration.bigbluebutton_endpoint_default === Rails.configuration.bigbluebutton_endpoint + end + helper_method :bigbluebutton_endpoint_default? end diff --git a/app/lib/bbb_api.rb b/app/lib/bbb_api.rb index 4f279e1c..d0e3d89c 100644 --- a/app/lib/bbb_api.rb +++ b/app/lib/bbb_api.rb @@ -28,7 +28,7 @@ module BbbApi end def bbb - @bbb ||= BigBlueButton::BigBlueButtonApi.new(bbb_endpoint + "api", bbb_secret, "0.8", true) + @bbb ||= BigBlueButton::BigBlueButtonApi.new(bbb_endpoint + "api", bbb_secret, "0.8") end def bbb_meeting_id(id) diff --git a/app/views/shared/_center_panel.html.erb b/app/views/shared/_center_panel.html.erb index a83bd135..2b695326 100644 --- a/app/views/shared/_center_panel.html.erb +++ b/app/views/shared/_center_panel.html.erb @@ -18,6 +18,9 @@