bigbluebutton-Github/bigbluebutton-html5/imports/api/timer/server/handlers/timerActivated.js
Arthurk12 f13217607e feat(timer): add model and messages to akka apps
This commit makes the messages of the timer feature to be proxied by
akka-apps and also adds a timer model that is updated based on these
messages.
Moving the timer panel opening logic to the timer button component in
the navigation panel was a consequence of these changes.
2023-05-18 15:29:42 -03:00

14 lines
353 B
JavaScript

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