2017-08-01 03:36:41 +08:00
|
|
|
import { check } from 'meteor/check';
|
|
|
|
|
|
|
|
import updateVoiceUser from '../modifiers/updateVoiceUser';
|
|
|
|
|
2023-03-17 02:37:24 +08:00
|
|
|
export default async function handleVoiceUpdate({ body }, meetingId) {
|
2017-08-01 03:36:41 +08:00
|
|
|
const voiceUser = body;
|
|
|
|
|
|
|
|
check(meetingId, String);
|
|
|
|
|
2023-03-17 02:37:24 +08:00
|
|
|
const result = await updateVoiceUser(meetingId, voiceUser);
|
|
|
|
return result;
|
2017-08-01 03:36:41 +08:00
|
|
|
}
|