bigbluebutton-Github/bigbluebutton-html5/imports/api/presentations/index.js

10 lines
286 B
JavaScript
Raw Normal View History

2017-10-12 08:40:51 +08:00
import { Meteor } from 'meteor/meteor';
const collectionOptions = Meteor.isClient ? {
connection: null,
} : {};
2023-11-23 21:04:01 +08:00
export const UploadingPresentations = Meteor.isClient ? new Mongo.Collection('uploadingPresentations', collectionOptions) : null;
2017-10-12 08:40:51 +08:00
2023-11-23 21:04:01 +08:00
export default UploadingPresentations;