mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-07-20 17:00:56 +02:00
8049700614
autogenerated commands format changed, needed FS plugin small change
18 lines
611 B
TOML
18 lines
611 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-read-text-file-lines"
|
|
description = "Enables the read_text_file_lines command without any pre-configured scope."
|
|
commands.allow = [
|
|
"read_text_file_lines",
|
|
"read_text_file_lines_next",
|
|
]
|
|
|
|
[[permission]]
|
|
identifier = "deny-read-text-file-lines"
|
|
description = "Denies the read_text_file_lines command without any pre-configured scope."
|
|
commands.deny = ["read_text_file_lines"]
|