mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-02 03:36:44 -06:00
1c67c26bd8
* wip * wip * wip * Update following.ts * wip * wip * wip * Update resolve-user.ts * maxQueryExecutionTime * wip * wip
41 lines
816 B
TypeScript
41 lines
816 B
TypeScript
import define from '../../define.js';
|
|
import { ApiError } from '../../error.js';
|
|
import { Clips } from '@/models/index.js';
|
|
|
|
export const meta = {
|
|
tags: ['clips'],
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'write:account',
|
|
|
|
errors: {
|
|
noSuchClip: {
|
|
message: 'No such clip.',
|
|
code: 'NO_SUCH_CLIP',
|
|
id: '70ca08ba-6865-4630-b6fb-8494759aa754',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
clipId: { type: 'string', format: 'misskey:id' },
|
|
},
|
|
required: ['clipId'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, user) => {
|
|
const clip = await Clips.findOneBy({
|
|
id: ps.clipId,
|
|
userId: user.id,
|
|
});
|
|
|
|
if (clip == null) {
|
|
throw new ApiError(meta.errors.noSuchClip);
|
|
}
|
|
|
|
await Clips.delete(clip.id);
|
|
});
|