Update kuerzel max length in TeamSchema to 16 characters
All checks were successful
SteamWarCI Build successful
All checks were successful
SteamWarCI Build successful
This commit is contained in:
@ -22,7 +22,7 @@ import {z} from "zod";
|
|||||||
export const TeamSchema = z.object({
|
export const TeamSchema = z.object({
|
||||||
id: z.number(),
|
id: z.number(),
|
||||||
name: z.string(),
|
name: z.string(),
|
||||||
kuerzel: z.string().min(1).max(4),
|
kuerzel: z.string().min(1).max(16),
|
||||||
color: z.string().max(1),
|
color: z.string().max(1),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user