bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/video-preview/service.js
2019-04-30 12:54:56 -07:00

10 lines
243 B
JavaScript
Executable File

export default {
changeWebcam: (deviceId) => {
Session.set('WebcamDeviceId', deviceId);
},
webcamDeviceId: () => Session.get('WebcamDeviceId'),
changeProfile: (profileId) => {
Session.set('WebcamProfileId', profileId);
},
};