bigbluebutton-Github/bigbluebutton-html5/imports/api/voice-users/server/handlers/meetingMuted.js

6 lines
178 B
JavaScript
Raw Normal View History

2018-09-29 05:32:52 +08:00
import changeMuteMeeting from '../modifiers/changeMuteMeeting';
export default function handleMeetingMuted({ body }, meetingId) {
return changeMuteMeeting(meetingId, body);
}