Fixed uuid references in schemas.
This commit is contained in:
@@ -30,7 +30,7 @@ export async function POST(request: Request) {
|
||||
name: z.string().max(100),
|
||||
slug: z.string().max(100),
|
||||
teamId: z.string().nullable().optional(),
|
||||
id: z.string().uuid().nullable().optional(),
|
||||
id: z.uuid().nullable().optional(),
|
||||
});
|
||||
|
||||
const { auth, body, error } = await parseRequest(request, schema);
|
||||
|
||||
Reference in New Issue
Block a user