bigbluebutton-Github/bigbluebutton-html5/imports/api/users/server/handlers/removeUser.js

13 lines
275 B
JavaScript
Raw Normal View History

2017-02-23 02:59:47 +08:00
import { check } from 'meteor/check';
import removeUser from '../modifiers/removeUser';
2017-10-12 09:02:23 +08:00
export default function handleRemoveUser({ body }, meetingId) {
const { intId } = body;
2017-02-23 02:59:47 +08:00
check(meetingId, String);
2017-10-12 09:02:23 +08:00
check(intId, String);
2017-02-23 02:59:47 +08:00
2017-10-12 09:02:23 +08:00
return removeUser(meetingId, intId);
2017-06-03 03:25:02 +08:00
}