forked from External/greenlight
GRN2-139: Fixed issue with default bbb endpoint (#522)
* Fixed issue with default bbb endpoint * Fixed issue with configuration rake task
This commit is contained in:
parent
c3ddb17514
commit
adf4b68008
|
@ -48,7 +48,7 @@ module Greenlight
|
||||||
config.gl_callback_url = ENV["GL_CALLBACK_URL"]
|
config.gl_callback_url = ENV["GL_CALLBACK_URL"]
|
||||||
|
|
||||||
# Default credentials (test-install.blindsidenetworks.com/bigbluebutton).
|
# Default credentials (test-install.blindsidenetworks.com/bigbluebutton).
|
||||||
config.bigbluebutton_endpoint_default = "http://test-install.blindsidenetworks.com/bigbluebutton/"
|
config.bigbluebutton_endpoint_default = "http://test-install.blindsidenetworks.com/bigbluebutton/api/"
|
||||||
config.bigbluebutton_secret_default = "8cd8ef52e8e101574e400365b55e11a6"
|
config.bigbluebutton_secret_default = "8cd8ef52e8e101574e400365b55e11a6"
|
||||||
|
|
||||||
# Use standalone BigBlueButton server.
|
# Use standalone BigBlueButton server.
|
||||||
|
|
|
@ -24,7 +24,7 @@ namespace :conf do
|
||||||
# Tests the checksum on the getMeetings api call
|
# Tests the checksum on the getMeetings api call
|
||||||
print "Checking Secret"
|
print "Checking Secret"
|
||||||
checksum = Digest::SHA1.hexdigest("getMeetings#{ENV['BIGBLUEBUTTON_SECRET']}")
|
checksum = Digest::SHA1.hexdigest("getMeetings#{ENV['BIGBLUEBUTTON_SECRET']}")
|
||||||
test_request("#{ENV['BIGBLUEBUTTON_ENDPOINT']}api/getMeetings?checksum=#{checksum}")
|
test_request("#{ENV['BIGBLUEBUTTON_ENDPOINT']}getMeetings?checksum=#{checksum}")
|
||||||
passed
|
passed
|
||||||
|
|
||||||
if ENV['ALLOW_MAIL_NOTIFICATIONS'] == 'true'
|
if ENV['ALLOW_MAIL_NOTIFICATIONS'] == 'true'
|
||||||
|
|
Loading…
Reference in New Issue