mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-06-28 15:29:56 +02:00
8049700614
autogenerated commands format changed, needed FS plugin small change
19 lines
541 B
TOML
19 lines
541 B
TOML
"$schema" = "../schemas/schema.json"
|
|
|
|
# This command allows nested commands, so its permissions are manually
|
|
# authored here instead of being autogenerated from the `COMMANDS` list in `build.rs`.
|
|
|
|
[[permission]]
|
|
identifier = "allow-write-file"
|
|
description = "Enables the write_file command without any pre-configured scope."
|
|
commands.allow = [
|
|
"write_file",
|
|
"open",
|
|
"write",
|
|
]
|
|
|
|
[[permission]]
|
|
identifier = "deny-write-file"
|
|
description = "Denies the write_file command without any pre-configured scope."
|
|
commands.deny = ["write_file"]
|