2018-07-07 12:01:33 +02:00
|
|
|
import Matching from '../../../../../../models/games/reversi/matching';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../../../define';
|
2018-03-07 09:48:32 +01:00
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['games'],
|
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
requireCredential: true
|
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
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
|
|
|
});
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
return;
|
|
|
|
});
|