mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-06-09 06:44:01 +02: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();
|
|
});
|