Add toggle to the ui for enabled

This commit is contained in:
Owen
2026-07-10 09:59:11 -04:00
parent 3be2d928f6
commit 0b2693a317
3 changed files with 152 additions and 4 deletions
+2 -1
View File
@@ -342,7 +342,8 @@ export function createGeneralFormSchema(t: TranslateFn) {
.string()
.min(1)
.max(255)
.regex(/^[a-zA-Z0-9-]+$/)
.regex(/^[a-zA-Z0-9-]+$/),
enabled: z.boolean()
});
}