Skip to content

Commit

Permalink
Fix the disabled notes setting so it matches the real server
Browse files Browse the repository at this point in the history
* From MDL-82389 : Disable Notes Lock Setting not working
  • Loading branch information
laurentdavid committed Aug 23, 2024
1 parent 01d6c3b commit b35f639
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 b35f639

Please sign in to comment.