bigbluebutton-Github/bigbluebutton-html5/imports/api/presentation-pods/server/handlers/removePresentationPod.js
2018-04-05 13:56:41 -07:00

14 lines
335 B
JavaScript

import { check } from 'meteor/check';
import removePresentationPod from '../modifiers/removePresentationPod';
export default function handleRemovePresentationPod({ body }, meetingId) {
check(body, Object);
check(meetingId, String);
const { podId } = body;
check(podId, String);
removePresentationPod(meetingId, podId);
}