oh shieit

This commit is contained in:
Michael Freno
2026-01-07 00:15:34 -05:00
parent b04b5a8022
commit 5d34da2647

View File

@@ -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
// ============================================================================