bigbluebutton-Github/bigbluebutton-html5/imports/api/breakouts-history/index.js

10 lines
220 B
JavaScript
Raw Normal View History

import { Meteor } from 'meteor/meteor';
const BreakoutsHistory = new Mongo.Collection('breakouts-history');
if (Meteor.isServer) {
BreakoutsHistory._ensureIndex({ meetingId: 1 });
}
export default BreakoutsHistory;