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

15 lines
332 B
TypeScript
Raw Normal View History

2018-07-07 04:01:33 -06:00
import Matching from '../../../../../../models/games/reversi/matching';
import { ILocalUser } from '../../../../../../models/user';
2018-03-07 01:48:32 -07:00
2018-07-16 13:36:44 -06:00
export const meta = {
requireCredential: true
};
2018-07-05 11:58:29 -06:00
export default (params: any, user: ILocalUser) => 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();
});