Add end showcase

This commit is contained in:
2025-08-09 19:14:21 +02:00
parent 4189c95d38
commit dc3c21f885
7 changed files with 547 additions and 1 deletions
@@ -48,7 +48,7 @@ export default defineEventHandler(async (event) => {
const { score, review } = await useValidatedBody(
event,
z.object({
score: z.number().min(0).nullable(),
score: z.int().min(0).max(32767).nullable(),
review: z.string().max(256).nullable()
})
);