bigbluebutton-Github/bigbluebutton-html5/imports/api/2.0/polls/server/modifiers/removePoll.js
2017-06-30 11:26:19 -03:00

26 lines
569 B
JavaScript

import Polls from '/imports/api/2.0/polls';
import { check } from 'meteor/check';
import Logger from '/imports/startup/server/logger';
export default function removePoll(meetingId, pollId) {
check(meetingId, String);
check(pollId, String);
const selector = {
meetingId,
'poll.id': pollId,
};
const cb = (err, numChanged) => {
if (err) {
return Logger.error(`Removing Poll2x from collection: ${err}`);
}
if (numChanged) {
return Logger.info(`Removed Poll2x id=${pollId}`);
}
};
return Polls.remove(selector, cb);
}