Skip to content

Commit

Permalink
parentMeetingId and sequence added in create meeting before we don't …
Browse files Browse the repository at this point in the history
…have
  • Loading branch information
joisarjignesh authored Oct 11, 2023
1 parent 5dab872 commit 7e4b816
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Services/InitMeeting.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,15 @@ public function initCreateMeeting(array $parameters)
$meetingParams->setBreakout(
$request->get('isBreakout', config('bigbluebutton.create.isBreakout', false))
);

$meetingParams->setParentMeetingID(
$request->get('parentMeetingID', "")
);

$meetingParams->setSequence(
$request->get('sequence', rand(1, 10000))
);

$meetingParams->setModeratorOnlyMessage(
$request->get('moderatorOnlyMessage', config('bigbluebutton.create.moderatorOnlyMessage', null))
);
Expand Down

0 comments on commit 7e4b816

Please sign in to comment.