bigbluebutton-Github/bigbluebutton-html5/imports/api/presentations/server/handlers/presentationCurrentSet.js

16 lines
448 B
JavaScript
Raw Normal View History

import { check } from 'meteor/check';
import setCurrentPresentation from '../modifiers/setCurrentPresentation';
export default async function handlePresentationCurrentSet({ body }, meetingId) {
check(body, Object);
const { presentationId, podId } = body;
check(meetingId, String);
check(presentationId, String);
check(podId, String);
const result = await setCurrentPresentation(meetingId, podId, presentationId);
return result;
}