11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const createArticleSchema = z.object({
|
|
title: z.string().min(1).max(256)
|
|
});
|
|
|
|
export const updateArticleSchema = z.object({
|
|
title: z.string().min(1).max(256),
|
|
content: z.string().max(50000)
|
|
});
|