bigbluebutton-Github/bigbluebutton-html5/imports/api/annotations/server/methods.js

13 lines
372 B
JavaScript
Raw Normal View History

2016-11-19 01:35:28 +08:00
import { Meteor } from 'meteor/meteor';
import undoAnnotation from './methods/undoAnnotation';
import clearWhiteboard from './methods/clearWhiteboard';
import sendAnnotation from './methods/sendAnnotation';
import sendBulkAnnotations from './methods/sendBulkAnnotations';
2016-11-19 01:35:28 +08:00
Meteor.methods({
undoAnnotation,
clearWhiteboard,
2017-07-25 04:29:02 +08:00
sendAnnotation,
sendBulkAnnotations,
2016-11-19 01:35:28 +08:00
});