paricafe/src/server/api/endpoints/othello/invitations.ts

16 lines
367 B
TypeScript
Raw Normal View History

2018-03-29 06:32:18 -05:00
import Matching, { pack as packMatching } from '../../../../models/othello-matching';
2018-03-07 02:48:32 -06:00
module.exports = (params, user) => new Promise(async (res, rej) => {
// Find session
const invitations = await Matching.find({
2018-03-29 00:48:47 -05:00
childId: user._id
2018-03-07 03:56:55 -06:00
}, {
sort: {
_id: -1
}
2018-03-07 02:48:32 -06:00
});
// Reponse
res(Promise.all(invitations.map(async (i) => await packMatching(i, user))));
});