bigbluebutton-Github/bigbluebutton-html5/imports/api/users-persistent-data/index.js

10 lines
244 B
JavaScript
Raw Normal View History

2021-03-20 04:12:27 +08:00
import { Meteor } from 'meteor/meteor';
const UsersPersistentData = new Mongo.Collection('users-persistent-data');
if (Meteor.isServer) {
UsersPersistentData._ensureIndex({ meetingId: 1, userId: 1 });
}
export default UsersPersistentData;