2018-07-07 19:01:33 +09:00
|
|
|
import Matching, { pack as packMatching } from '../../../../../models/games/reversi/matching';
|
2018-11-02 13:47:44 +09:00
|
|
|
import define from '../../../define';
|
2018-03-07 17:48:32 +09:00
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
export const meta = {
|
|
|
|
requireCredential: true
|
|
|
|
};
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps, user) => {
|
2018-03-07 17:48:32 +09:00
|
|
|
// Find session
|
|
|
|
const invitations = await Matching.find({
|
2018-03-29 14:48:47 +09:00
|
|
|
childId: user._id
|
2018-03-07 18:56:55 +09:00
|
|
|
}, {
|
|
|
|
sort: {
|
|
|
|
_id: -1
|
|
|
|
}
|
2018-03-07 17:48:32 +09:00
|
|
|
});
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
return await Promise.all(invitations.map((i) => packMatching(i, user)));
|
|
|
|
});
|