mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-18 16:07:31 -07:00
10 lines
192 B
TypeScript
10 lines
192 B
TypeScript
|
import Matching from '../../../models/othello-matching';
|
||
|
|
||
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
||
|
await Matching.remove({
|
||
|
parent_id: user._id
|
||
|
});
|
||
|
|
||
|
res();
|
||
|
});
|