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/admin/invite.ts | 44 -------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 src/server/api/endpoints/admin/invite.ts (limited to 'src/server/api/endpoints/admin/invite.ts') diff --git a/src/server/api/endpoints/admin/invite.ts b/src/server/api/endpoints/admin/invite.ts deleted file mode 100644 index 2c69eec535..0000000000 --- a/src/server/api/endpoints/admin/invite.ts +++ /dev/null @@ -1,44 +0,0 @@ -import rndstr from 'rndstr'; -import define from '../../define'; -import { RegistrationTickets } from '@/models/index'; -import { genId } from '@/misc/gen-id'; - -export const meta = { - tags: ['admin'], - - requireCredential: true as const, - requireModerator: true, - - params: {}, - - res: { - type: 'object' as const, - optional: false as const, nullable: false as const, - properties: { - code: { - type: 'string' as const, - optional: false as const, nullable: false as const, - example: '2ERUA5VR', - maxLength: 8, - minLength: 8 - } - } - } -}; - -export default define(meta, async () => { - const code = rndstr({ - length: 8, - chars: '2-9A-HJ-NP-Z', // [0-9A-Z] w/o [01IO] (32 patterns) - }); - - await RegistrationTickets.insert({ - id: genId(), - createdAt: new Date(), - code, - }); - - return { - code, - }; -}); -- cgit v1.2.3-freya