2021-07-19 22:02:58 +08:00
|
|
|
import changeLayout from '../modifiers/changeLayout';
|
|
|
|
|
|
|
|
export default function broadcastLayout({ body }, meetingId) {
|
2022-02-05 02:03:39 +08:00
|
|
|
const { layout, presentationIsOpen, cameraPosition, focusedCamera, presentationVideoRate, setByUserId } = body;
|
2021-07-19 22:02:58 +08:00
|
|
|
|
2022-02-05 02:03:39 +08:00
|
|
|
changeLayout(meetingId, layout, presentationIsOpen, cameraPosition, focusedCamera, presentationVideoRate, setByUserId);
|
2021-07-19 22:02:58 +08:00
|
|
|
}
|