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

6 lines
190 B
JavaScript
Raw Normal View History

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