mirror of https://github.com/sualko/cloud_bbb
Compare commits
4 Commits
1d0eb6d5f8
...
9f4e7bbf44
Author | SHA1 | Date |
---|---|---|
|
9f4e7bbf44 | |
|
d023ffa331 | |
|
834e2a7800 | |
|
093e286e0f |
|
@ -118,7 +118,8 @@ class API {
|
|||
$joinMeetingParams->addUserData('bbb_skip_video_preview_on_first_join', !$room->getMediaCheck()); // 2.3
|
||||
|
||||
if ($room->getCleanLayout()) {
|
||||
$joinMeetingParams->addUserData('bbb_auto_swap_layout', true);
|
||||
$joinMeetingParams->addUserData('bbb_auto_swap_layout', true); // 2.5 and below // ToDo: remove in the future
|
||||
$joinMeetingParams->addUserData('bbb_hide_presentation_on_join', true); // 2.6 and up
|
||||
$joinMeetingParams->addUserData('bbb_show_participants_on_login', false);
|
||||
$joinMeetingParams->addUserData('bbb_show_public_chat_on_login', false);
|
||||
}
|
||||
|
|
|
@ -34,8 +34,8 @@ class Restriction extends Entity implements JsonSerializable {
|
|||
$this->addType('allowRecording', 'boolean');
|
||||
}
|
||||
|
||||
public function setGroupName(string $groupName) {
|
||||
$this->groupName = $groupName;
|
||||
public function setGroupName(?string $groupName) {
|
||||
$this->groupName = $groupName ?? '';
|
||||
}
|
||||
|
||||
public function jsonSerialize(): array {
|
||||
|
|
Loading…
Reference in New Issue