bigbluebutton-Github/bigbluebutton-html5/imports/api/meetings/server/handlers/userLockChange.js

6 lines
183 B
JavaScript
Raw Normal View History

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