10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
|
import { Meteor } from 'meteor/meteor';
|
||
|
|
||
|
const NetworkInformation = new Mongo.Collection('network-information');
|
||
|
|
||
|
if (Meteor.isServer) {
|
||
|
NetworkInformation._ensureIndex({ meetingId: 1 });
|
||
|
}
|
||
|
|
||
|
export default NetworkInformation;
|