2017-10-12 08:40:51 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
|
2021-10-20 04:35:39 +08:00
|
|
|
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;
|