bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/video-preview/service.js

10 lines
243 B
JavaScript
Raw Normal View History

2018-11-07 07:10:56 +08:00
export default {
changeWebcam: (deviceId) => {
Session.set('WebcamDeviceId', deviceId);
},
webcamDeviceId: () => Session.get('WebcamDeviceId'),
2019-04-09 06:07:26 +08:00
changeProfile: (profileId) => {
Session.set('WebcamProfileId', profileId);
},
2018-11-07 07:10:56 +08:00
};