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

6 lines
183 B
JavaScript
Raw Normal View History

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