Sharkey/src/server/api/endpoints/reversi/invitations.ts
syuilo 1ef66c962a reversi 💮 💯
2018-06-17 08:10:54 +09:00

15 lines
367 B
TypeScript

import Matching, { pack as packMatching } from '../../../../models/reversi-matching';
module.exports = (params, user) => new Promise(async (res, rej) => {
// Find session
const invitations = await Matching.find({
childId: user._id
}, {
sort: {
_id: -1
}
});
// Reponse
res(Promise.all(invitations.map(async (i) => await packMatching(i, user))));
});