bigbluebutton-Github/bigbluebutton-html5/imports/api/breakouts/server/handlers/breakoutClosed.js

6 lines
159 B
JavaScript
Raw Normal View History

2016-11-14 19:57:10 +08:00
import clearBreakouts from '../modifiers/clearBreakouts';
export default function breakoutClosed({ payload }) {
return clearBreakouts(payload.meetingId);
}