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

10 lines
165 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;
const isEnabled = () => TIMER_CONFIG.enabled;
export {
isEnabled,
};