Merge branch 'MDL-80625-404' of https://github.com/ssj365/moodle into MOODLE_404_STABLE

This commit is contained in:
Sara Arjona
2024-06-26 12:14:56 +02:00
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);