bigbluebutton-Github/bigbluebutton-html5/imports/api/meetings/index.js

21 lines
545 B
JavaScript
Raw Normal View History

2017-10-12 06:17:42 +08:00
import { Meteor } from 'meteor/meteor';
const Meetings = new Mongo.Collection('meetings');
const RecordMeetings = new Mongo.Collection('record-meetings');
2019-09-09 22:48:50 +08:00
const MeetingTimeRemaining = new Mongo.Collection('meeting-time-remaining');
2017-10-12 06:17:42 +08:00
if (Meteor.isServer) {
// types of queries for the meetings:
// 1. meetingId
Meetings._ensureIndex({ meetingId: 1 });
2019-08-22 02:57:34 +08:00
RecordMeetings._ensureIndex({ meetingId: 1 });
2019-09-09 22:48:50 +08:00
MeetingTimeRemaining._ensureIndex({ meetingId: 1 });
2017-10-12 06:17:42 +08:00
}
export {
RecordMeetings,
2019-09-09 22:48:50 +08:00
MeetingTimeRemaining,
};
2017-10-12 06:17:42 +08:00
export default Meetings;