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

14 lines
371 B
JavaScript
Raw Normal View History

2016-11-19 01:35:28 +08:00
import { check } from 'meteor/check';
import removeAnnotation from '../modifiers/removeAnnotation';
2016-11-19 01:35:28 +08:00
export default function handleWhiteboardUndo({ body }, meetingId) {
const whiteboardId = body.whiteboardId;
const shapeId = body.annotationId;
2016-11-19 01:35:28 +08:00
check(whiteboardId, String);
check(shapeId, String);
return removeAnnotation(meetingId, whiteboardId, shapeId);
2017-06-03 03:25:02 +08:00
}