2018-03-07 09:48:32 +01: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
|
2018-03-07 10:56:55 +01:00
|
|
|
}, {
|
|
|
|
sort: {
|
|
|
|
_id: -1
|
|
|
|
}
|
2018-03-07 09:48:32 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// Reponse
|
|
|
|
res(Promise.all(invitations.map(async (i) => await packMatching(i, user))));
|
|
|
|
});
|