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

10 lines
192 B
TypeScript
Raw Normal View History

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