bigbluebutton-Github/bigbluebutton-html5/imports/api/presentations/server/publishers.js
2017-10-11 18:09:35 -07:00

25 lines
800 B
JavaScript

import { Meteor } from 'meteor/meteor';
import { check } from 'meteor/check';
import Presentations from '/imports/api/2.0/presentations';
import Logger from '/imports/startup/server/logger';
import mapToAcl from '/imports/startup/mapToAcl';
function presentations(credentials) {
const { meetingId, requesterUserId, requesterToken } = credentials;
check(meetingId, String);
check(requesterUserId, String);
check(requesterToken, String);
Logger.info(`Publishing Presentations2x for ${meetingId} ${requesterUserId} ${requesterToken}`);
return Presentations.find({ meetingId });
}
function publish(...args) {
const boundPresentations = presentations.bind(this);
return mapToAcl('subscriptions.presentations', boundPresentations)(args);
}
Meteor.publish('presentations2x', publish);