import { check } from 'meteor/check'; import Users from '/imports/api/2.0/users'; import setApprovedStatus from '../modifiers/setApprovedStatus'; import userJoin from '../methods/userJoin'; export default function handleGuestsWaitingForApproval({ header, body }, meetingId) { const { userId } = header; const { approved, approvedBy } = body; check(userId, String); check(meetingId, String); check(approved, Boolean); check(approvedBy, String); const selector = { meetingId, userId, }; const User = Users.findOne(selector); if (User && approved) { userJoin(meetingId, userId, User.authToken); } return setApprovedStatus(meetingId, userId, approved, approvedBy); }