monkeeShark/src/server/api/endpoints/othello/match/cancel.ts

10 lines
191 B
TypeScript
Raw Normal View History

2018-03-07 08:48:32 +00:00
import Matching from '../../../models/othello-matching';
module.exports = (params, user) => new Promise(async (res, rej) => {
await Matching.remove({
2018-03-29 05:48:47 +00:00
parentId: user._id
2018-03-07 08:48:32 +00:00
});
res();
});