bigbluebutton-Github/bigbluebutton-html5/imports/api/timer/server/helpers.js
Pedro Beschorner Marin 5463a4a423 Stopwatch handlers
2023-05-18 15:29:31 -03:00

15 lines
282 B
JavaScript

import { Meteor } from 'meteor/meteor';
const TIMER_CONFIG = Meteor.settings.public.timer;
const MILLI_IN_MINUTE = 60000;
const isEnabled = () => TIMER_CONFIG.enabled;
const getDefaultTime = () => TIMER_CONFIG.time * MILLI_IN_MINUTE;
export {
isEnabled,
getDefaultTime,
};