bigbluebutton-Github/bigbluebutton-html5/imports/api/annotations/server/methods/sendBulkAnnotations.js

10 lines
289 B
JavaScript

import { check } from 'meteor/check';
import sendAnnotation from './sendAnnotation';
export default function sendBulkAnnotations(credentials, payload) {
check(credentials, Object);
check(payload, [Object]);
payload.forEach(annotation => sendAnnotation(credentials, annotation));
}