api/app/validators/user.ts
2025-05-19 16:00:51 +02:00

10 lines
300 B
TypeScript

import vine from '@vinejs/vine'
export const createUserValidator = vine.compile(
vine.object({
firstName: vine.string().minLength(2).maxLength(50),
lastName: vine.string().minLength(2).maxLength(50),
className: vine.string().minLength(2).maxLength(10),
avatar: vine.file(),
})
)