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

15 lines
382 B
JavaScript

import { Meteor } from 'meteor/meteor';
import publishTypedVote from './methods/publishTypedVote';
import publishVote from './methods/publishVote';
import publishPoll from './methods/publishPoll';
import startPoll from './methods/startPoll';
import stopPoll from './methods/stopPoll';
Meteor.methods({
publishVote,
publishTypedVote,
publishPoll,
startPoll,
stopPoll,
});