1
Fork 0
mirror of https://github.com/diced/zipline.git synced 2025-04-11 23:31:17 -05:00

fix: allow null password on imports

This commit is contained in:
diced 2025-02-16 20:27:11 -08:00
parent b842d594f7
commit 7e1cec2e44
No known key found for this signature in database
GPG key ID: 370BD1BA142842D1

View file

@ -180,7 +180,7 @@ export const export3Schema = z.object({
users: z.record(
z.object({
username: z.string(),
password: z.string(),
password: z.string().optional().nullable(),
avatar: z.string().optional().nullable(),
administrator: z.boolean(),
super_administrator: z.boolean(),