bigbluebutton-Github/bigbluebutton-html5/imports/api/2.0/screenshare/server/handlers/broadcastStarted.js

7 lines
164 B
JavaScript
Raw Normal View History

2017-07-14 20:32:15 +08:00
import { check } from 'meteor/check';
export default function handleBroadcastStartedVoice({ body }, meetingId) {
check(meetingId, String);
return meetingId;
}