paricafe/src/server/api/endpoints/games/reversi/invitations.ts

22 lines
449 B
TypeScript
Raw Normal View History

2018-07-07 05:01:33 -05:00
import Matching, { pack as packMatching } from '../../../../../models/games/reversi/matching';
2018-11-01 23:47:44 -05:00
import define from '../../../define';
2018-03-07 02:48:32 -06:00
2018-07-16 14:36:44 -05:00
export const meta = {
tags: ['games'],
2018-07-16 14:36:44 -05:00
requireCredential: true
};
export default define(meta, async (ps, user) => {
2018-03-07 02:48:32 -06:00
// 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
});
return await Promise.all(invitations.map((i) => packMatching(i, user)));
});