bigbluebutton-Github/bigbluebutton-html5/imports/api/annotations/server/methods.js
2022-05-13 02:47:41 +00:00

13 lines
384 B
JavaScript

import { Meteor } from 'meteor/meteor';
import clearWhiteboard from './methods/clearWhiteboard';
import sendAnnotations from './methods/sendAnnotations';
import sendBulkAnnotations from './methods/sendBulkAnnotations';
import deleteAnnotations from './methods/deleteAnnotations';
Meteor.methods({
clearWhiteboard,
sendAnnotations,
sendBulkAnnotations,
deleteAnnotations,
});