bigbluebutton-Github/bigbluebutton-html5/imports/api/captions/server/handlers/padCreate.js
2019-05-22 18:33:20 -03:00

12 lines
278 B
JavaScript

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);
}