refactor: add server side validation schema for apiKeys (#4859)
* refactor: add tests for apiKey api routes * refactor: move files to subfolder * refactor: schema for apiKeys.create and apiKeys.delete
This commit is contained in:
committed by
GitHub
parent
9302beb630
commit
492beedf00
20
server/routes/api/apiKeys/schema.ts
Normal file
20
server/routes/api/apiKeys/schema.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import { z } from "zod";
|
||||
import BaseSchema from "@server/routes/api/BaseSchema";
|
||||
|
||||
export const APIKeysCreateSchema = BaseSchema.extend({
|
||||
body: z.object({
|
||||
/** API Key name */
|
||||
name: z.string(),
|
||||
}),
|
||||
});
|
||||
|
||||
export type APIKeysCreateReq = z.infer<typeof APIKeysCreateSchema>;
|
||||
|
||||
export const APIKeysDeleteSchema = BaseSchema.extend({
|
||||
body: z.object({
|
||||
/** API Key Id */
|
||||
id: z.string().uuid(),
|
||||
}),
|
||||
});
|
||||
|
||||
export type APIKeysDeleteReq = z.infer<typeof APIKeysDeleteSchema>;
|
||||
Reference in New Issue
Block a user