mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-06-16 19:15:03 +00:00
fix: default per-counter perms
This commit is contained in:
parent
6a2e9fda0f
commit
7a893bf026
1 changed files with 3 additions and 3 deletions
|
@ -62,9 +62,9 @@ export const zCounter = z.strictObject({
|
|||
})
|
||||
.nullable()
|
||||
.default(null),
|
||||
can_view: z.boolean().default(false),
|
||||
can_edit: z.boolean().default(false),
|
||||
can_reset_all: z.boolean().default(false),
|
||||
can_view: z.boolean().nullable().default(null),
|
||||
can_edit: z.boolean().nullable().default(null),
|
||||
can_reset_all: z.boolean().nullable().default(null),
|
||||
});
|
||||
|
||||
export const zCountersConfig = z.strictObject({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue