2016-11-19 01:35:28 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
2017-10-12 08:52:57 +08:00
|
|
|
import clearWhiteboard from './methods/clearWhiteboard';
|
2022-05-04 20:40:56 +08:00
|
|
|
import sendAnnotations from './methods/sendAnnotations';
|
2019-02-14 00:15:09 +08:00
|
|
|
import sendBulkAnnotations from './methods/sendBulkAnnotations';
|
2022-05-04 20:40:56 +08:00
|
|
|
import deleteAnnotations from './methods/deleteAnnotations';
|
2016-11-19 01:35:28 +08:00
|
|
|
|
|
|
|
Meteor.methods({
|
2017-10-12 08:52:57 +08:00
|
|
|
clearWhiteboard,
|
2022-05-04 20:40:56 +08:00
|
|
|
sendAnnotations,
|
2019-02-14 00:15:09 +08:00
|
|
|
sendBulkAnnotations,
|
2022-05-04 20:40:56 +08:00
|
|
|
deleteAnnotations,
|
2016-11-19 01:35:28 +08:00
|
|
|
});
|