mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-14 13:24:53 +00:00
* wip * wip * wip * Update index.ts * Update gen-openapi-spec.ts * Update api.ja-JP.md * Fix * Improve doc * Update gen-openapi-spec.ts * Update redoc.html * Improve doc * Update gen-openapi-spec.ts * Improve doc * Update CHANGELOG.md
16 lines
299 B
TypeScript
16 lines
299 B
TypeScript
import Matching from '../../../../../../models/games/reversi/matching';
|
|
import define from '../../../../define';
|
|
|
|
export const meta = {
|
|
tags: ['games'],
|
|
|
|
requireCredential: true
|
|
};
|
|
|
|
export default define(meta, async (ps, user) => {
|
|
await Matching.remove({
|
|
parentId: user._id
|
|
});
|
|
|
|
return;
|
|
});
|