monkeeShark/src/server/api/endpoints/games/reversi/match/cancel.ts

15 lines
332 B
TypeScript
Raw Normal View History

2018-07-07 10:01:33 +00:00
import Matching from '../../../../../../models/games/reversi/matching';
import { ILocalUser } from '../../../../../../models/user';
2018-03-07 08:48:32 +00:00
2018-07-16 19:36:44 +00:00
export const meta = {
requireCredential: true
};
2018-07-05 17:58:29 +00:00
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
2018-03-07 08:48:32 +00:00
await Matching.remove({
2018-03-29 05:48:47 +00:00
parentId: user._id
2018-03-07 08:48:32 +00:00
});
res();
});