2017-01-18 20:53:33 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
2019-05-17 04:11:10 +08:00
|
|
|
import takeOwnership from '/imports/api/captions/server/methods/takeOwnership';
|
2019-06-14 10:18:36 +08:00
|
|
|
import vrEditCaptions from '/imports/api/captions/server/methods/vrEditCaptions';
|
2017-01-18 20:53:33 +08:00
|
|
|
|
|
|
|
Meteor.methods({
|
2019-05-17 04:11:10 +08:00
|
|
|
takeOwnership,
|
2019-06-14 10:18:36 +08:00
|
|
|
vrEditCaptions,
|
2017-01-18 20:53:33 +08:00
|
|
|
});
|