bigbluebutton-Github/bigbluebutton-html5/imports/api/timer/server/handlers/timerSwitched.js

17 lines
407 B
JavaScript
Raw Normal View History

import { check } from 'meteor/check';
import updateTimer from '/imports/api/timer/server/modifiers/updateTimer';
export default function handleTimerSwitched({ body }, meetingId) {
const { userId, stopwatch } = body;
check(meetingId, String);
check(userId, String);
check(stopwatch, Boolean);
updateTimer({
action: 'switch',
meetingId,
requesterUserId: userId,
stopwatch,
});
}