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

25 lines
693 B
JavaScript
Raw Normal View History

2023-05-11 04:03:20 +08:00
import { Meteor } from 'meteor/meteor';
import activateTimer from './methods/activateTimer';
import deactivateTimer from './methods/deactivateTimer';
import resetTimer from './methods/resetTimer';
import startTimer from './methods/startTimer';
import stopTimer from './methods/stopTimer';
2020-04-26 03:03:35 +08:00
import switchTimer from './methods/switchTimer';
import setTimer from './methods/setTimer';
import getServerTime from './methods/getServerTime';
import setMusic from './methods/setMusic';
import timerEnded from './methods/timerEnded';
2023-05-11 04:03:20 +08:00
Meteor.methods({
activateTimer,
deactivateTimer,
resetTimer,
startTimer,
stopTimer,
2020-04-26 03:03:35 +08:00
switchTimer,
setTimer,
getServerTime,
setMusic,
timerEnded,
2023-05-11 04:03:20 +08:00
});