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

11 lines
284 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';
2016-11-19 01:35:28 +08:00
Meteor.methods({
undoAnnotation,
clearWhiteboard,
2017-07-25 04:29:02 +08:00
sendAnnotation,
2016-11-19 01:35:28 +08:00
});