10 lines
208 B
JavaScript
10 lines
208 B
JavaScript
|
import { Meteor } from 'meteor/meteor';
|
||
|
|
||
|
const AudioCaptions = new Mongo.Collection('audio-captions');
|
||
|
|
||
|
if (Meteor.isServer) {
|
||
|
AudioCaptions._ensureIndex({ meetingId: 1 });
|
||
|
}
|
||
|
|
||
|
export default AudioCaptions;
|