bigbluebutton-Github/bigbluebutton-html5/imports/api/1.1/shapes/server/methods.js

11 lines
283 B
JavaScript
Raw Normal View History

2016-11-19 01:35:28 +08:00
import { Meteor } from 'meteor/meteor';
2017-04-20 02:27:00 +08:00
import undoAnnotation from './methods/undoAnnotation';
2017-04-22 02:01:52 +08:00
import clearWhiteboard from './methods/clearWhiteboard';
import sendAnnotation from './methods/sendAnnotation';
2016-11-19 01:35:28 +08:00
Meteor.methods({
2017-04-20 02:27:00 +08:00
undoAnnotation,
2017-04-22 02:01:52 +08:00
clearWhiteboard,
sendAnnotation
2016-11-19 01:35:28 +08:00
});