From 5d34da2647f5f5202408b4e81782b4e368029b00 Mon Sep 17 00:00:00 2001 From: Michael Freno Date: Wed, 7 Jan 2026 00:15:34 -0500 Subject: [PATCH] oh shieit --- src/server/api/schemas/blog.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/server/api/schemas/blog.ts b/src/server/api/schemas/blog.ts index 76cfd75..b01a8d2 100644 --- a/src/server/api/schemas/blog.ts +++ b/src/server/api/schemas/blog.ts @@ -6,6 +6,15 @@ import { z } from "zod"; * Schemas for post creation, updating, querying, and interactions */ +// ============================================================================ +// Post Category and Status +// ============================================================================ + +/** + * Post category enum (deprecated but kept for backward compatibility) + */ +export const postCategorySchema = z.enum(["blog", "project"]); + // ============================================================================ // Post Creation and Updates // ============================================================================