Browse Source
Remove TODO comment from types.ts
Removed TODO comment for more validation.
pull/2226/head
Alexander Chepurnoy
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
src/server/utils/types.ts
|
|
|
@ -27,7 +27,7 @@ export const MtuSchema = z |
|
|
|
.max(9000, { message: t('zod.mtu') }); |
|
|
|
|
|
|
|
export const JcSchema = z.number().min(1).max(128).nullable(); |
|
|
|
// TODO: more validation
|
|
|
|
|
|
|
|
export const JminSchema = z.number().max(1279).nullable(); |
|
|
|
|
|
|
|
export const JmaxSchema = z.number().max(1280).nullable(); |
|
|
|
|