mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 18:33:07 +02:00
15 lines
367 B
TypeScript
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))));
|
|
});
|