6 lines
178 B
JavaScript
6 lines
178 B
JavaScript
|
import changeMuteMeeting from '../modifiers/changeMuteMeeting';
|
||
|
|
||
|
export default function handleMeetingMuted({ body }, meetingId) {
|
||
|
return changeMuteMeeting(meetingId, body);
|
||
|
}
|