bigbluebutton-Github/bigbluebutton-html5/imports/api/captions/server/handlers/padCreate.js

12 lines
278 B
JavaScript
Raw Normal View History

import { check } from 'meteor/check';
import fetchReadOnlyPadId from '/imports/api/captions/server/methods/fetchReadOnlyPadId';
export default function handlePadCreate({ body }) {
const { pad } = body;
const { id } = pad;
check(id, String);
fetchReadOnlyPadId(id);
}