mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-09-22 21:30:44 +02:00
`readTextFile` and `writeTextFile` now go through `read_file` and `write_file`, so the `allow-read-text-file`, `deny-read-text-file`, `allow-write-text-file` and `deny-write-text-file` permissions are gone; grant `fs:allow-read-file` and `fs:allow-write-file` instead.
17 lines
382 B
TOML
17 lines
382 B
TOML
"$schema" = "schemas/schema.json"
|
|
|
|
[[set]]
|
|
identifier = "read-app-specific-dirs-recursive"
|
|
description = """
|
|
This permission allows recursive read functionality on the application
|
|
specific base directories.
|
|
"""
|
|
permissions = [
|
|
"allow-read-dir",
|
|
"allow-read-file",
|
|
"allow-read-text-file-lines",
|
|
"allow-read-text-file-lines-next",
|
|
"allow-exists",
|
|
"scope-app-recursive",
|
|
]
|