24 lines
787 B
JavaScript
Executable File
24 lines
787 B
JavaScript
Executable File
import Presentations from '/imports/api/presentations';
|
|
|
|
export function addPresentationToCollection(meetingId, presentationObject) {
|
|
//check if the presentation is already in the collection
|
|
const presentationObj = Presentations.findOne({
|
|
meetingId: meetingId,
|
|
'presentation.id': presentationObject.id,
|
|
});
|
|
if (presentationObj == null) {
|
|
const entry = {
|
|
meetingId: meetingId,
|
|
presentation: {
|
|
id: presentationObject.id,
|
|
name: presentationObject.name,
|
|
current: presentationObject.current,
|
|
},
|
|
};
|
|
return Presentations.insert(entry);
|
|
|
|
//logger.info "presentation added id =[#{id}]:#{presentationObject.id} in #{meetingId}.
|
|
// Presentations.size is now #{Presentations.find({meetingId: meetingId}).count()}"
|
|
}
|
|
};
|