bigbluebutton-Github/bigbluebutton-html5/imports/api/pads/server/handlers/captureSharedNotes.js

14 lines
321 B
JavaScript
Raw Normal View History

2022-09-25 04:59:29 +08:00
import { check } from 'meteor/check';
import padCapture from '../methods/padCapture';
export default function captureSharedNotes({ body }, meetingId) {
check(body, Object);
check(meetingId, String);
const { parentMeetingId } = body;
check(parentMeetingId, String);
padCapture(meetingId, parentMeetingId);
}