Sharkey/src/api/endpoints/othello/invitations.ts

12 lines
331 B
TypeScript
Raw Normal View History

2018-03-07 10:48:32 +02:00
import Matching, { pack as packMatching } from '../../models/othello-matching';
module.exports = (params, user) => new Promise(async (res, rej) => {
// Find session
const invitations = await Matching.find({
child_id: user._id
});
// Reponse
res(Promise.all(invitations.map(async (i) => await packMatching(i, user))));
});