bigbluebutton-Github/bigbluebutton-html5/imports/api/video-streams/server/handlers/userUnsharedHtml5Webcam.js
2019-12-10 08:21:19 -03:00

17 lines
496 B
JavaScript
Executable File

import { check } from 'meteor/check';
import unsharedWebcam from '../modifiers/unsharedWebcam';
import { isValidStream } from '/imports/api/video-streams/server/helpers';
export default function handleUserUnsharedHtml5Webcam({ header, body }, meetingId) {
const { userId, stream } = body;
check(header, Object);
check(meetingId, String);
check(userId, String);
check(stream, String);
if (!isValidStream(stream)) return false;
return unsharedWebcam(meetingId, userId, stream);
}