bigbluebutton-Github/bigbluebutton-html5/imports/api/meetings/server/handlers/meetingEnd.js

9 lines
225 B
JavaScript
Raw Normal View History

2017-07-22 03:34:28 +08:00
import { check } from 'meteor/check';
import removeMeeting from '../modifiers/removeMeeting';
2017-10-11 02:30:45 +08:00
export default function handleMeetingEnd({ body }, meetingId) {
2017-07-22 03:34:28 +08:00
check(meetingId, String);
return removeMeeting(meetingId);
}