18 lines
684 B
JavaScript
Executable File
18 lines
684 B
JavaScript
Executable File
import Slides from '/imports/api/slides';
|
|
import Presentations from '/imports/api/presentations';
|
|
import { logger } from '/imports/startup/server/logger';
|
|
|
|
export function removePresentationFromCollection(meetingId, presentationId) {
|
|
const presentationObject = Presentations.findOne({
|
|
meetingId: meetingId,
|
|
'presentation.id': presentationId,
|
|
});
|
|
if (presentationObject != null) {
|
|
Slides.remove({
|
|
presentationId: presentationId,
|
|
}, logger.info(`cleared Slides Collection (presentationId: ${presentationId}!`));
|
|
Presentations.remove(presentationObject._id);
|
|
return logger.info(`----removed presentation[${presentationId}] from ${meetingId}`);
|
|
}
|
|
};
|