bigbluebutton-Github/bigbluebutton-html5/imports/api/captions/index.js
2019-05-22 18:33:20 -03:00

10 lines
197 B
JavaScript

import { Meteor } from 'meteor/meteor';
const Captions = new Mongo.Collection('captions');
if (Meteor.isServer) {
Captions._ensureIndex({ meetingId: 1, padId: 1 });
}
export default Captions;