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

13 lines
303 B
JavaScript
Raw Normal View History

2017-06-29 04:37:45 +08:00
import { Meteor } from 'meteor/meteor';
2017-10-06 20:50:01 +08:00
import publishVote from './methods/publishVote';
2018-09-25 06:43:54 +08:00
import publishPoll from './methods/publishPoll';
2018-09-24 06:20:20 +08:00
import startPoll from './methods/startPoll';
2018-09-25 06:43:54 +08:00
import stopPoll from './methods/stopPoll';
2017-06-29 04:37:45 +08:00
Meteor.methods({
2017-06-29 04:37:45 +08:00
publishVote,
2018-09-25 06:43:54 +08:00
publishPoll,
2018-09-24 06:20:20 +08:00
startPoll,
2018-09-25 06:43:54 +08:00
stopPoll,
});