Files
tauri-plugins-workspace/plugins/fs/permissions/commands/write_file.toml
T
Lucas Nogueira 8049700614 chore: update to tauri 3.0.0-alpha.9
autogenerated commands format changed, needed FS plugin small change
2026-06-18 17:29:56 -03:00

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"]