iceshrimp/src/server/api/endpoints/reversi/match/cancel.ts

11 lines
271 B
TypeScript
Raw Normal View History

2018-06-17 08:10:54 +09:00
import Matching from '../../../../../models/reversi-matching';
2018-06-18 09:54:53 +09:00
import { ILocalUser } from '../../../../../models/user';
2018-03-07 17:48:32 +09:00
2018-06-18 09:54:53 +09:00
module.exports = (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
2018-03-07 17:48:32 +09:00
await Matching.remove({
2018-03-29 14:48:47 +09:00
parentId: user._id
2018-03-07 17:48:32 +09:00
});
res();
});