12 lines
256 B
JavaScript
12 lines
256 B
JavaScript
import { check } from 'meteor/check';
|
|
|
|
import updateVoiceUser from '../modifiers/updateVoiceUser';
|
|
|
|
export default function handleVoiceUpdate(meetingId, { body }) {
|
|
const user = body;
|
|
|
|
check(user, Object);
|
|
|
|
return updateVoiceUser(meetingId, user);
|
|
}
|