2018-07-07 10:01:33 +00:00
|
|
|
import Matching from '../../../../../../models/games/reversi/matching';
|
|
|
|
import { ILocalUser } from '../../../../../../models/user';
|
2018-03-07 08:48:32 +00:00
|
|
|
|
2018-07-05 17:58:29 +00:00
|
|
|
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
2018-03-07 08:48:32 +00:00
|
|
|
await Matching.remove({
|
2018-03-29 05:48:47 +00:00
|
|
|
parentId: user._id
|
2018-03-07 08:48:32 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
res();
|
|
|
|
});
|