25 lines
772 B
JavaScript
25 lines
772 B
JavaScript
import Annotations from '/imports/api/annotations';
|
|
import { Meteor } from 'meteor/meteor';
|
|
import { check } from 'meteor/check';
|
|
import Logger from '/imports/startup/server/logger';
|
|
import mapToAcl from '/imports/startup/mapToAcl';
|
|
|
|
function annotations(credentials) {
|
|
const { meetingId, requesterUserId, requesterToken } = credentials;
|
|
|
|
check(meetingId, String);
|
|
check(requesterUserId, String);
|
|
check(requesterToken, String);
|
|
|
|
Logger.info(`Publishing Annotations for ${meetingId} ${requesterUserId} ${requesterToken}`);
|
|
|
|
return Annotations.find({ meetingId });
|
|
}
|
|
|
|
function publish(...args) {
|
|
const boundAnnotations = annotations.bind(this);
|
|
return mapToAcl('subscriptions.annotations', boundAnnotations)(args);
|
|
}
|
|
|
|
Meteor.publish('annotations', publish);
|