2016-11-19 01:35:28 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
2017-10-12 08:52:57 +08:00
|
|
|
import undoAnnotation from './methods/undoAnnotation';
|
|
|
|
import clearWhiteboard from './methods/clearWhiteboard';
|
2017-05-02 05:34:24 +08:00
|
|
|
import sendAnnotation from './methods/sendAnnotation';
|
2019-02-14 00:15:09 +08:00
|
|
|
import sendBulkAnnotations from './methods/sendBulkAnnotations';
|
2016-11-19 01:35:28 +08:00
|
|
|
|
|
|
|
Meteor.methods({
|
2017-10-12 08:52:57 +08:00
|
|
|
undoAnnotation,
|
|
|
|
clearWhiteboard,
|
2017-07-25 04:29:02 +08:00
|
|
|
sendAnnotation,
|
2019-02-14 00:15:09 +08:00
|
|
|
sendBulkAnnotations,
|
2016-11-19 01:35:28 +08:00
|
|
|
});
|