2021-10-20 04:35:39 +08:00
|
|
|
const collectionOptions = Meteor.isClient ? {
|
|
|
|
connection: null,
|
|
|
|
} : {};
|
|
|
|
|
|
|
|
const PresentationUploadToken = new Mongo.Collection('presentation-upload-token', collectionOptions);
|
2018-09-05 00:56:10 +08:00
|
|
|
|
|
|
|
export default PresentationUploadToken;
|