mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-22 10:11:32 +03:00
57e3d43d96
* feat(acl): generate schema for scope * allow plugin to define its global scope schema * refactor to use schemas folder instead of individual files * change signature * delete .schema.json files
16 lines
472 B
TOML
16 lines
472 B
TOML
"$schema" = "schemas/schema.json"
|
|
|
|
[default]
|
|
description = "Default permissions granted"
|
|
permissions = ["allow-home-read-only"]
|
|
|
|
[[set]]
|
|
identifier = "allow-full-homefolder-access"
|
|
description = "Allows read and write access to the complete $HOME folder."
|
|
permissions = ["allow-home-read-only", "allow-home-write-only"]
|
|
|
|
[[set]]
|
|
identifier = "deny-homefolder-config-access"
|
|
description = "Denies access to the $HOME/.config folder."
|
|
permissions = ["deny-home-dir-config"]
|