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