2018-11-07 07:10:56 +08:00
|
|
|
export default {
|
|
|
|
changeWebcam: (deviceId) => {
|
|
|
|
Session.set('WebcamDeviceId', deviceId);
|
|
|
|
},
|
2018-11-17 02:56:39 +08:00
|
|
|
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
|
|
|
};
|