import { check } from 'meteor/check'; import Presentations from '/imports/api/presentations'; import Logger from '/imports/startup/server/logger'; import clearSlidesPresentation from '/imports/api/slides/server/modifiers/clearSlidesPresentation'; export default function removePresentation(meetingId, presentationId) { check(meetingId, String); check(presentationId, String); const selector = { meetingId, id: presentationId, }; const cb = (err, numChanged) => { if (err) { Logger.error(`Removing presentation from collection: ${err}`); return; } if (numChanged) { clearSlidesPresentation(meetingId, presentationId); Logger.info(`Removed presentation id=${presentationId} meeting=${meetingId}`); } }; return Presentations.remove(selector, cb); }