bigbluebutton-Github/bigbluebutton-html5/imports/api/annotations/server/modifiers/removeAnnotation.js
2020-11-24 17:44:13 -03:00

26 lines
653 B
JavaScript

import { check } from 'meteor/check';
import Annotations from '/imports/api/annotations';
import Logger from '/imports/startup/server/logger';
export default function removeAnnotation(meetingId, whiteboardId, shapeId) {
check(meetingId, String);
check(whiteboardId, String);
check(shapeId, String);
const selector = {
meetingId,
whiteboardId,
id: shapeId,
};
try {
const numberAffected = Annotations.remove(selector);
if (numberAffected) {
Logger.info(`Removed annotation id=${shapeId} whiteboard=${whiteboardId}`);
}
} catch (err) {
Logger.error(`Removing annotation from collection: ${err}`);
}
}