bigbluebutton-Github/bigbluebutton-html5/imports/api/meetings/server/handlers/meetingCreation.js
2017-10-11 18:09:35 -07:00

10 lines
236 B
JavaScript

import { check } from 'meteor/check';
import addMeeting from '../modifiers/addMeeting';
export default function handleMeetingCreation({ body }) {
const meeting = body.props;
check(meeting, Object);
return addMeeting(meeting);
}