2023-05-03 04:46:33 +08:00
|
|
|
import { check } from 'meteor/check';
|
|
|
|
import updateTimer from '/imports/api/timer/server/modifiers/updateTimer';
|
|
|
|
|
|
|
|
export default function handleTimerStarted({ body }, meetingId) {
|
2023-06-09 03:24:25 +08:00
|
|
|
const { userId } = body;
|
2023-05-03 04:46:33 +08:00
|
|
|
check(meetingId, String);
|
|
|
|
check(userId, String);
|
|
|
|
|
|
|
|
updateTimer({
|
|
|
|
action: 'start',
|
|
|
|
meetingId,
|
|
|
|
requesterUserId: userId,
|
|
|
|
});
|
2023-06-09 03:24:25 +08:00
|
|
|
}
|