bigbluebutton-Github/bigbluebutton-html5/imports/api/presentations/server/handlers/presentationAdded.js
2018-04-09 12:48:37 -07:00

15 lines
379 B
JavaScript
Executable File

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