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.
18 lines
410 B
JavaScript
18 lines
410 B
JavaScript
import { check } from 'meteor/check';
|
|
import updateTimer from '/imports/api/timer/server/modifiers/updateTimer';
|
|
|
|
export default function handleTrackSet({ body }, meetingId) {
|
|
const { userId, track } = body;
|
|
|
|
check(meetingId, String);
|
|
check(userId, String);
|
|
check(track, String);
|
|
|
|
updateTimer({
|
|
action: 'track',
|
|
meetingId,
|
|
requesterUserId: userId,
|
|
stopwatch: false,
|
|
track,
|
|
});
|
|
} |