bigbluebutton-Github/bigbluebutton-html5/imports/api/meetings/server/handlers/handleUserChatLockChange.js
Daniel Petri Rocha fa0ad14c35
feat(bbb-html5): Ban specific users from the public chat (#20585)
* Initial user lock changes

* Show lock icon
2024-07-17 12:56:33 -04:00

6 lines
192 B
JavaScript

import changeUserChatLock from '../modifiers/changeUserChatLock';
export default async function handleUserChatLockChange({ body }, meetingId) {
await changeUserChatLock(meetingId, body);
}