feat(client): test mount from form

This commit is contained in:
Nicolas Meienberger
2025-09-03 21:16:44 +02:00
parent 0c0a3b8581
commit ca4bd4a619
5 changed files with 78 additions and 16 deletions

View File

@@ -12,7 +12,7 @@ export const nfsConfigSchema = type({
backend: "'nfs'",
server: "string",
exportPath: "string",
port: "number >= 1",
port: type("string.integer.parse").or(type("number")).to("1 <= number <= 65536").default("2049"),
version: "'3' | '4' | '4.1'",
});