mr-shortman 6a32dcced7
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 0s
restructured drizzle schema; added comments schema and server side operations
2025-03-18 21:43:41 +01:00

8 lines
178 B
TypeScript

import { z } from "zod";
import { editorContentSchema } from ".";
export const commentSchema = z.object({
content: editorContentSchema,
parentId: z.string().optional(),
});