bigbluebutton-Github/bigbluebutton-html5/imports/api/2.0/annotations/server/handlers/whiteboardCleared.js

12 lines
302 B
JavaScript

import { check } from 'meteor/check';
import clearAnnotations from '../modifiers/clearAnnotations';
export default function handleWhiteboardCleared({ body }, meetingId) {
const whiteboardId = body.whiteboardId;
check(whiteboardId, String);
return clearAnnotations(meetingId, whiteboardId);
}