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

10 lines
197 B
TypeScript
Raw Normal View History

2018-06-16 17:10:54 -06:00
import Matching from '../../../../../models/reversi-matching';
2018-03-07 01:48:32 -07:00
module.exports = (params, user) => new Promise(async (res, rej) => {
await Matching.remove({
2018-03-28 23:48:47 -06:00
parentId: user._id
2018-03-07 01:48:32 -07:00
});
res();
});