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

12 lines
352 B
JavaScript
Raw Normal View History

2017-10-07 02:12:33 +08:00
import { check } from 'meteor/check';
2017-10-26 01:29:03 +08:00
import changeRole from '/imports/api/users/server/modifiers/changeRole';
export default async function handleChangeRole(payload, meetingId) {
2017-10-10 23:05:16 +08:00
check(payload.body, Object);
2017-10-07 02:12:33 +08:00
check(meetingId, String);
2017-10-26 01:29:03 +08:00
const { userId, role, changedBy } = payload.body;
await changeRole(role, userId, meetingId, changedBy);
}