mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-09 23:15:46 +01:00
6 lines
123 B
TypeScript
6 lines
123 B
TypeScript
|
|
import { z } from 'zod';
|
||
|
|
|
||
|
|
export const createDashboardSchemaValidation = z.object({
|
||
|
|
name: z.string().min(2).max(25),
|
||
|
|
});
|