Skip to content

Commit

Permalink
Merge pull request #32 from call-learning/fix-disabled-notes
Browse files Browse the repository at this point in the history
Fix the disabled notes setting so it matches the real server
  • Loading branch information
andrewnicols authored Aug 26, 2024
2 parents 38d6c2d + b35f639 commit 24e7ea9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion application/src/Controller/ApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public function meetingEnd(string $serverID, Request $request): XmlResponse
'disableMic',
'disablePrivateChat',
'disablePublicChat',
'disableNote',
'disableNotes',
'lockedLayout',
'hideUserList',
'lockOnJoin',
Expand Down
2 changes: 1 addition & 1 deletion application/src/Entity/Meeting.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Meeting
/**
* @ORM\Column(type="boolean")
*/
private $disableNote= false;
private $disableNotes= false;

/**
* @ORM\Column(type="boolean")
Expand Down

0 comments on commit 24e7ea9

Please sign in to comment.