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

6 lines
157 B
JavaScript
Raw Normal View History

2017-10-12 06:17:42 +08:00
import handleMeetingCreation from './meetingCreation';
2016-10-22 00:27:47 +08:00
2017-10-12 06:17:42 +08:00
export default function handleGetAllMeetings({ body }) {
return handleMeetingCreation({ body });
2017-06-03 03:25:02 +08:00
}