Files
tauri-plugins-workspace/plugins/fs/permissions/read-all.toml
T
Lucas Fernandes Nogueira a315a07f36 refactor(fs)!: remove the unwatch permission (#3606)
There has been no `unwatch` command since v2.0 (`Watcher.close()` releases
the resource), so `allow-unwatch` and `deny-unwatch` never granted anything.
2026-09-22 06:05:04 -03:00

20 lines
366 B
TOML

"$schema" = "schemas/schema.json"
[[permission]]
identifier = "read-all"
description = "This enables all read related commands without any pre-configured accessible paths."
commands.allow = [
"read_dir",
"read_file",
"read",
"open",
"read_text_file_lines",
"read_text_file_lines_next",
"seek",
"stat",
"lstat",
"fstat",
"exists",
"watch",
]