f13217607e
This commit makes the messages of the timer feature to be proxied by akka-apps and also adds a timer model that is updated based on these messages. Moving the timer panel opening logic to the timer button component in the navigation panel was a consequence of these changes.
25 lines
691 B
JavaScript
25 lines
691 B
JavaScript
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';
|
|
import switchTimer from './methods/switchTimer';
|
|
import setTimer from './methods/setTimer';
|
|
import getServerTime from './methods/getServerTime';
|
|
import setTrack from './methods/setTrack';
|
|
import timerEnded from './methods/endTimer';
|
|
|
|
Meteor.methods({
|
|
activateTimer,
|
|
deactivateTimer,
|
|
resetTimer,
|
|
startTimer,
|
|
stopTimer,
|
|
switchTimer,
|
|
setTimer,
|
|
getServerTime,
|
|
setTrack,
|
|
timerEnded,
|
|
});
|