misskey/src/server/api/endpoints/games/reversi/match/cancel.ts

15 lines
332 B
TypeScript
Raw Normal View History

2018-07-07 12:01:33 +02:00
import Matching from '../../../../../../models/games/reversi/matching';
import { ILocalUser } from '../../../../../../models/user';
2018-03-07 09:48:32 +01:00
2018-07-16 21:36:44 +02:00
export const meta = {
requireCredential: true
};
2018-07-05 19:58:29 +02:00
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
2018-03-07 09:48:32 +01:00
await Matching.remove({
2018-03-29 07:48:47 +02:00
parentId: user._id
2018-03-07 09:48:32 +01:00
});
res();
});