Skip to content

Commit 90d5d62

Browse files
authored
Added missing lockSettings to CreateMeetingParameters->getHTTPQue… (#48)
Added missing lockSettings to CreateMeetingParameters->getHTTPQuery
2 parents 73d7257 + 398adfc commit 90d5d62

File tree

1 file changed

+28
-26
lines changed

1 file changed

+28
-26
lines changed

src/Parameters/CreateMeetingParameters.php

Lines changed: 28 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -897,32 +897,34 @@ public function getPresentationsAsXML()
897897
public function getHTTPQuery()
898898
{
899899
$queries = [
900-
'name' => $this->meetingName,
901-
'meetingID' => $this->meetingId,
902-
'attendeePW' => $this->attendeePassword,
903-
'moderatorPW' => $this->moderatorPassword,
904-
'dialNumber' => $this->dialNumber,
905-
'voiceBridge' => $this->voiceBridge,
906-
'webVoice' => $this->webVoice,
907-
'logoutURL' => $this->logoutUrl,
908-
'record' => $this->record ? 'true' : 'false',
909-
'duration' => $this->duration,
910-
'maxParticipants' => $this->maxParticipants,
911-
'autoStartRecording' => $this->autoStartRecording ? 'true' : 'false',
912-
'allowStartStopRecording' => $this->allowStartStopRecording ? 'true' : 'false',
913-
'welcome' => trim($this->welcomeMessage),
914-
'moderatorOnlyMessage' => trim($this->moderatorOnlyMessage),
915-
'webcamsOnlyForModerator' => $this->webcamsOnlyForModerator ? 'true' : 'false',
916-
'logo' => $this->logo,
917-
'copyright' => $this->copyright,
918-
'muteOnStart' => $this->muteOnStart,
919-
'lockSettingsDisableCam' => $this->isLockSettingsDisableCam() ? 'true' : 'false',
920-
'lockSettingsDisableMic' => $this->isLockSettingsDisableMic() ? 'true' : 'false',
921-
'lockSettingsDisablePrivateChat' => $this->isLockSettingsDisablePrivateChat() ? 'true' : 'false',
922-
'lockSettingsDisablePublicChat' => $this->isLockSettingsDisablePublicChat() ? 'true' : 'false',
923-
'lockSettingsDisableNote' => $this->isLockSettingsDisableNote() ? 'true' : 'false',
924-
'lockSettingsLockedLayout' => $this->isLockSettingsLockedLayout() ? 'true' : 'false',
925-
'lockSettingsLockOnJoin' => $this->isLockSettingsLockOnJoin() ? 'true' : 'false',
900+
'name' => $this->meetingName,
901+
'meetingID' => $this->meetingId,
902+
'attendeePW' => $this->attendeePassword,
903+
'moderatorPW' => $this->moderatorPassword,
904+
'dialNumber' => $this->dialNumber,
905+
'voiceBridge' => $this->voiceBridge,
906+
'webVoice' => $this->webVoice,
907+
'logoutURL' => $this->logoutUrl,
908+
'record' => $this->record ? 'true' : 'false',
909+
'duration' => $this->duration,
910+
'maxParticipants' => $this->maxParticipants,
911+
'autoStartRecording' => $this->autoStartRecording ? 'true' : 'false',
912+
'allowStartStopRecording' => $this->allowStartStopRecording ? 'true' : 'false',
913+
'welcome' => trim($this->welcomeMessage),
914+
'moderatorOnlyMessage' => trim($this->moderatorOnlyMessage),
915+
'webcamsOnlyForModerator' => $this->webcamsOnlyForModerator ? 'true' : 'false',
916+
'logo' => $this->logo,
917+
'copyright' => $this->copyright,
918+
'muteOnStart' => $this->muteOnStart,
919+
'lockSettingsDisableCam' => $this->isLockSettingsDisableCam() ? 'true' : 'false',
920+
'lockSettingsDisableMic' => $this->isLockSettingsDisableMic() ? 'true' : 'false',
921+
'lockSettingsDisablePrivateChat' => $this->isLockSettingsDisablePrivateChat() ? 'true' : 'false',
922+
'lockSettingsDisablePublicChat' => $this->isLockSettingsDisablePublicChat() ? 'true' : 'false',
923+
'lockSettingsDisableNote' => $this->isLockSettingsDisableNote() ? 'true' : 'false',
924+
'lockSettingsHideUserList' => $this->isLockSettingsHideUserList() ? 'true' : 'false',
925+
'lockSettingsLockedLayout' => $this->isLockSettingsLockedLayout() ? 'true' : 'false',
926+
'lockSettingsLockOnJoin' => $this->isLockSettingsLockOnJoin() ? 'true' : 'false',
927+
'lockSettingsLockOnJoinConfigurable' => $this->isLockSettingsLockOnJoinConfigurable() ? 'true' : 'false',
926928
];
927929

928930
// Add breakout rooms parameters only if the meeting is a breakout room

0 commit comments

Comments
 (0)