bigbluebutton-Github/bigbluebutton-html5/imports/api/1.1/polls/server/modifiers/removePoll.js
2017-06-19 08:57:32 -03:00

26 lines
565 B
JavaScript

import Polls from '/imports/api/1.1/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 Poll from collection: ${err}`);
}
if (numChanged) {
return Logger.info(`Removed Poll id=${pollId}`);
}
};
return Polls.remove(selector, cb);
}