forked from External/greenlight
Bug fixes related to banned users (#554)
This commit is contained in:
@ -52,8 +52,17 @@ module Greenlight
|
||||
config.bigbluebutton_secret_default = "8cd8ef52e8e101574e400365b55e11a6"
|
||||
|
||||
# Use standalone BigBlueButton server.
|
||||
config.bigbluebutton_endpoint = ENV["BIGBLUEBUTTON_ENDPOINT"].present? ? ENV["BIGBLUEBUTTON_ENDPOINT"] : config.bigbluebutton_endpoint_default
|
||||
config.bigbluebutton_secret = ENV["BIGBLUEBUTTON_SECRET"].present? ? ENV["BIGBLUEBUTTON_SECRET"] : config.bigbluebutton_secret_default
|
||||
config.bigbluebutton_endpoint = if ENV["BIGBLUEBUTTON_ENDPOINT"].present?
|
||||
ENV["BIGBLUEBUTTON_ENDPOINT"]
|
||||
else
|
||||
config.bigbluebutton_endpoint_default
|
||||
end
|
||||
|
||||
config.bigbluebutton_secret = if ENV["BIGBLUEBUTTON_SECRET"].present?
|
||||
ENV["BIGBLUEBUTTON_SECRET"]
|
||||
else
|
||||
config.bigbluebutton_secret_default
|
||||
end
|
||||
|
||||
# Fix endpoint format if required.
|
||||
config.bigbluebutton_endpoint += "/" unless config.bigbluebutton_endpoint.ends_with?('/')
|
||||
|
@ -60,6 +60,7 @@ en:
|
||||
invite_email_verification: ALLOW_MAIL_NOTIFICATIONS must be set to true in order to use this method
|
||||
promoted: User has been successfully promoted
|
||||
registration_method_updated: Registration method successfully updated
|
||||
settings: Site Settings successfully changed
|
||||
unauthorized: You are not authorized to perform actions on this user
|
||||
title: Organization Settings
|
||||
users:
|
||||
|
Reference in New Issue
Block a user