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

17 lines
563 B
JavaScript
Raw Normal View History

2016-11-19 01:35:28 +08:00
import { check } from 'meteor/check';
2019-10-23 09:26:25 +08:00
import AnnotationsStreamer from '/imports/api/annotations/server/streamer';
import removeAnnotation from '../modifiers/removeAnnotation';
2016-11-19 01:35:28 +08:00
export default async function handleWhiteboardUndo({ body }, meetingId) {
const { whiteboardId } = body;
const shapeId = body.annotationId;
2016-11-19 01:35:28 +08:00
check(whiteboardId, String);
check(shapeId, String);
2019-10-23 09:26:25 +08:00
AnnotationsStreamer(meetingId).emit('removed', { meetingId, whiteboardId, shapeId });
const result = await removeAnnotation(meetingId, whiteboardId, shapeId);
return result;
2017-06-03 03:25:02 +08:00
}