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

6 lines
178 B
JavaScript
Raw Normal View History

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