From 0e4a111f81cceed275d9bec2695f6e401fb654d8 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 12 Nov 2021 02:02:25 +0900 Subject: refactoring Resolve #7779 --- src/server/api/endpoints/clips/update.ts | 65 -------------------------------- 1 file changed, 65 deletions(-) delete mode 100644 src/server/api/endpoints/clips/update.ts (limited to 'src/server/api/endpoints/clips/update.ts') diff --git a/src/server/api/endpoints/clips/update.ts b/src/server/api/endpoints/clips/update.ts deleted file mode 100644 index 7f645560bb..0000000000 --- a/src/server/api/endpoints/clips/update.ts +++ /dev/null @@ -1,65 +0,0 @@ -import $ from 'cafy'; -import { ID } from '@/misc/cafy-id'; -import define from '../../define'; -import { ApiError } from '../../error'; -import { Clips } from '@/models/index'; - -export const meta = { - tags: ['clips'], - - requireCredential: true as const, - - kind: 'write:account', - - params: { - clipId: { - validator: $.type(ID), - }, - - name: { - validator: $.str.range(1, 100), - }, - - isPublic: { - validator: $.optional.bool - }, - - description: { - validator: $.optional.nullable.str.range(1, 2048) - } - }, - - errors: { - noSuchClip: { - message: 'No such clip.', - code: 'NO_SUCH_CLIP', - id: 'b4d92d70-b216-46fa-9a3f-a8c811699257' - }, - }, - - res: { - type: 'object' as const, - optional: false as const, nullable: false as const, - ref: 'Clip' - } -}; - -export default define(meta, async (ps, user) => { - // Fetch the clip - const clip = await Clips.findOne({ - id: ps.clipId, - userId: user.id - }); - - if (clip == null) { - throw new ApiError(meta.errors.noSuchClip); - } - - await Clips.update(clip.id, { - name: ps.name, - description: ps.description, - isPublic: ps.isPublic, - }); - - return await Clips.pack(clip.id); -}); -- cgit v1.2.3-freya