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