bigbluebutton-Github/bigbluebutton-html5/imports/api/users/server/handlers/removeUser.js
2017-10-11 18:09:35 -07:00

13 lines
275 B
JavaScript

import { check } from 'meteor/check';
import removeUser from '../modifiers/removeUser';
export default function handleRemoveUser({ body }, meetingId) {
const { intId } = body;
check(meetingId, String);
check(intId, String);
return removeUser(meetingId, intId);
}