MDL-80625 mod_bigbluebuttonbn: Fix param name

This commit is contained in:
Shamiso.Jaravaza
2024-06-12 11:45:28 -06:00
parent d3ae1391ab
commit 904cf075e7
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -462,7 +462,7 @@ class meeting {
);
}
if ((boolean) config::get('recordingready_enabled')) {
$metadata['bn-recording-ready-url'] = $this->instance->get_record_ready_url()->out(false);
$metadata['bbb-recording-ready-url'] = $this->instance->get_record_ready_url()->out(false);
}
if ((boolean) config::get('meetingevents_enabled')) {
$metadata['analytics-callback-url'] = $this->instance->get_meeting_event_notification_url()->out(false);
+2 -2
View File
@@ -246,7 +246,7 @@ class mod_bigbluebuttonbn_generator extends \testing_module_generator {
'sequence' => 1,
'meta' => [
'bn-presenter-name' => $data['presentername'] ?? 'Fake presenter',
'bn-recording-ready-url' => new moodle_url('/mod/bigbluebuttonbn/bbb_broker.php', [
'bbb-recording-ready-url' => new moodle_url('/mod/bigbluebuttonbn/bbb_broker.php', [
'action' => 'recording_ready',
'bigbluebuttonbn' => $instance->get_instance_id()
]),
@@ -352,7 +352,7 @@ class mod_bigbluebuttonbn_generator extends \testing_module_generator {
],
]);
if ((boolean) config::get('recordingready_enabled')) {
$roomconfig['meta']['bn-recording-ready-url'] = $instance->get_record_ready_url()->out(false);
$roomconfig['meta']['bbb-recording-ready-url'] = $instance->get_record_ready_url()->out(false);
}
if ((boolean) config::get('meetingevents_enabled')) {
$roomconfig['meta']['analytics-callback-url'] = $instance->get_meeting_event_notification_url()->out(false);