permissions disallow support (#1627)

This commit is contained in:
Aiden Cline
2025-08-05 19:14:28 -05:00
committed by GitHub
parent 6b25b7e95e
commit a48274f82b
4 changed files with 29 additions and 14 deletions

View File

@@ -224,7 +224,7 @@ export namespace Config {
})
export type Layout = z.infer<typeof Layout>
export const Permission = z.union([z.literal("ask"), z.literal("allow")])
export const Permission = z.union([z.literal("ask"), z.literal("allow"), z.literal("deny")])
export type Permission = z.infer<typeof Permission>
export const Info = z