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

13 lines
291 B
JavaScript
Raw Normal View History

2017-10-12 08:33:57 +08:00
import { Meteor } from 'meteor/meteor';
const Polls = new Mongo.Collection('polls');
2017-10-12 08:33:57 +08:00
if (Meteor.isServer) {
// We can have just one active poll per meeting
// makes no sense to index it by anything other than meetingId
Polls._ensureIndex({ meetingId: 1 });
}
export default Polls;