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

6 lines
171 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) {
changeMuteMeeting(meetingId, body);
2018-09-29 05:32:52 +08:00
}