diff options
Diffstat (limited to 'src/server/api/endpoints/admin/show-moderation-logs.ts')
| -rw-r--r-- | src/server/api/endpoints/admin/show-moderation-logs.ts | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/src/server/api/endpoints/admin/show-moderation-logs.ts b/src/server/api/endpoints/admin/show-moderation-logs.ts deleted file mode 100644 index e9509568d0..0000000000 --- a/src/server/api/endpoints/admin/show-moderation-logs.ts +++ /dev/null @@ -1,74 +0,0 @@ -import $ from 'cafy'; -import { ID } from '@/misc/cafy-id'; -import define from '../../define'; -import { ModerationLogs } from '@/models/index'; -import { makePaginationQuery } from '../../common/make-pagination-query'; - -export const meta = { - tags: ['admin'], - - requireCredential: true as const, - requireModerator: true, - - params: { - limit: { - validator: $.optional.num.range(1, 100), - default: 10 - }, - - sinceId: { - validator: $.optional.type(ID), - }, - - untilId: { - validator: $.optional.type(ID), - }, - }, - - res: { - type: 'array' as const, - optional: false as const, nullable: false as const, - items: { - type: 'object' as const, - optional: false as const, nullable: false as const, - properties: { - id: { - type: 'string' as const, - optional: false as const, nullable: false as const, - format: 'id' - }, - createdAt: { - type: 'string' as const, - optional: false as const, nullable: false as const, - format: 'date-time' - }, - type: { - type: 'string' as const, - optional: false as const, nullable: false as const - }, - info: { - type: 'object' as const, - optional: false as const, nullable: false as const - }, - userId: { - type: 'string' as const, - optional: false as const, nullable: false as const, - format: 'id' - }, - user: { - type: 'object' as const, - optional: false as const, nullable: false as const, - ref: 'User' - } - } - } - } -}; - -export default define(meta, async (ps) => { - const query = makePaginationQuery(ModerationLogs.createQueryBuilder('report'), ps.sinceId, ps.untilId); - - const reports = await query.take(ps.limit!).getMany(); - - return await ModerationLogs.packMany(reports); -}); |