7a6e457f5d
Replacement of the list of arguments of the update Timer function in an object and adequacy of its calls in the functions when necessary.
16 lines
444 B
JavaScript
16 lines
444 B
JavaScript
import { check } from 'meteor/check';
|
|
import updateTimer from '/imports/api/timer/server/modifiers/updateTimer';
|
|
import { extractCredentials } from '/imports/api/common/server/helpers';
|
|
|
|
export default function timerEnded() {
|
|
const { meetingId, requesterUserId } = extractCredentials(this.userId);
|
|
check(meetingId, String);
|
|
check(requesterUserId, String);
|
|
|
|
updateTimer({
|
|
action: 'ended',
|
|
meetingId,
|
|
requesterUserId,
|
|
});
|
|
}
|