Skip to content

Commit

Permalink
GRN2-139: Fixed issue with default bbb endpoint (#522)
Browse files Browse the repository at this point in the history
* Fixed issue with default bbb endpoint

* Fixed issue with configuration rake task
  • Loading branch information
farhatahmad authored and jfederico committed May 17, 2019
1 parent c3ddb17 commit adf4b68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class Application < Rails::Application
config.gl_callback_url = ENV["GL_CALLBACK_URL"]

# 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"

# Use standalone BigBlueButton server.
Expand Down
2 changes: 1 addition & 1 deletion lib/tasks/configuration.rake
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace :conf do
# Tests the checksum on the getMeetings api call
print "Checking 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

if ENV['ALLOW_MAIL_NOTIFICATIONS'] == 'true'
Expand Down

0 comments on commit adf4b68

Please sign in to comment.