bigbluebutton-Github/bigbluebutton-html5/imports/api/timer/server/methods/switchTimer.js

16 lines
483 B
JavaScript
Raw Normal View History

2020-04-26 03:03:35 +08:00
import { check } from 'meteor/check';
import updateTimer from '/imports/api/timer/server/modifiers/updateTimer';
import { extractCredentials } from '/imports/api/common/server/helpers';
export default function switchTimer(stopwatch) {
check(stopwatch, Boolean);
const { meetingId } = extractCredentials(this.userId);
check(meetingId, String);
// Bogus value of time. It won't update the collection
const time = 0;
updateTimer('switch', meetingId, time, stopwatch);
}