bigbluebutton-Github/bigbluebutton-html5/imports/api/presentations/index.js
2023-11-23 10:04:01 -03:00

10 lines
286 B
JavaScript

import { Meteor } from 'meteor/meteor';
const collectionOptions = Meteor.isClient ? {
connection: null,
} : {};
export const UploadingPresentations = Meteor.isClient ? new Mongo.Collection('uploadingPresentations', collectionOptions) : null;
export default UploadingPresentations;