mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-09 12:13:10 -05:00
10 lines
281 B
TypeScript
10 lines
281 B
TypeScript
import * as z from "zod";
|
|
|
|
export const FA_POST_CONTENT_LIMIT = 2000;
|
|
|
|
export const freeAgentPostSchema = z.object({
|
|
playstyles: z.array(z.enum(["FRONTLINE", "MIDLINE", "BACKLINE"])),
|
|
canVC: z.enum(["YES", "NO", "MAYBE"]),
|
|
content: z.string().max(FA_POST_CONTENT_LIMIT),
|
|
});
|