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({
|
2018-03-29 07:48:47 +02:00
|
|
|
parentId: user._id
|
2018-03-07 09:48:32 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
res();
|
|
|
|
});
|