jormungandr-bite/src/server/api/endpoints/games/reversi/match/cancel.ts

15 lines
306 B
TypeScript
Raw Normal View History

2018-07-07 04:01:33 -06:00
import Matching from '../../../../../../models/games/reversi/matching';
2018-11-01 22:47:44 -06:00
import define from '../../../../define';
2018-03-07 01:48:32 -07:00
2018-07-16 13:36:44 -06:00
export const meta = {
requireCredential: true
};
2018-11-01 22:47:44 -06:00
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
2018-03-07 01:48:32 -07:00
await Matching.remove({
2018-03-28 23:48:47 -06:00
parentId: user._id
2018-03-07 01:48:32 -07:00
});
res();
2018-11-01 22:47:44 -06:00
}));