bigbluebutton-Github/bigbluebutton-html5/imports/api/timer/server/helpers.js

15 lines
282 B
JavaScript
Raw Normal View History

2023-05-11 04:03:20 +08:00
import { Meteor } from 'meteor/meteor';
const TIMER_CONFIG = Meteor.settings.public.timer;
2020-04-26 03:03:35 +08:00
const MILLI_IN_MINUTE = 60000;
2023-05-11 04:03:20 +08:00
const isEnabled = () => TIMER_CONFIG.enabled;
2020-04-26 03:03:35 +08:00
const getDefaultTime = () => TIMER_CONFIG.time * MILLI_IN_MINUTE;
2023-05-11 04:03:20 +08:00
export {
isEnabled,
2020-04-26 03:03:35 +08:00
getDefaultTime,
2023-05-11 04:03:20 +08:00
};