mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-07-14 16:37:22 +02:00
82 lines
2.2 KiB
TOML
82 lines
2.2 KiB
TOML
# Automatically generated - DO NOT EDIT!
|
|
|
|
"$schema" = "../../schemas/schema.json"
|
|
|
|
# Scopes Section
|
|
# This section contains scopes, which define file level access
|
|
|
|
[[permission]]
|
|
identifier = "scope-desktop-recursive"
|
|
description = "This scope permits recursive access to the complete `$DESKTOP` folder, including sub directories and files."
|
|
|
|
[[permission.scope.allow]]
|
|
path = "$DESKTOP"
|
|
[[permission.scope.allow]]
|
|
path = "$DESKTOP/**"
|
|
|
|
[[permission]]
|
|
identifier = "scope-desktop"
|
|
description = "This scope permits access to all files and list content of top level directories in the `$DESKTOP` folder."
|
|
|
|
[[permission.scope.allow]]
|
|
path = "$DESKTOP"
|
|
[[permission.scope.allow]]
|
|
path = "$DESKTOP/*"
|
|
|
|
[[permission]]
|
|
identifier = "scope-desktop-index"
|
|
description = "This scope permits to list all files and folders in the `$DESKTOP`folder."
|
|
|
|
[[permission.scope.allow]]
|
|
path = "$DESKTOP"
|
|
|
|
# Sets Section
|
|
# This section combines the scope elements with enablement of commands
|
|
|
|
[[set]]
|
|
identifier = "allow-desktop-read-recursive"
|
|
description = "This allows full recursive read access to the complete `$DESKTOP` folder, files and subdirectories."
|
|
permissions = [
|
|
"read-all",
|
|
"scope-desktop-recursive"
|
|
]
|
|
|
|
[[set]]
|
|
identifier = "allow-desktop-write-recursive"
|
|
description = "This allows full recursive write access to the complete `$DESKTOP` folder, files and subdirectories."
|
|
permissions = [
|
|
"write-all",
|
|
"scope-desktop-recursive"
|
|
]
|
|
|
|
[[set]]
|
|
identifier = "allow-desktop-read"
|
|
description = "This allows non-recursive read access to the `$DESKTOP` folder."
|
|
permissions = [
|
|
"read-all",
|
|
"scope-desktop"
|
|
]
|
|
|
|
[[set]]
|
|
identifier = "allow-desktop-write"
|
|
description = "This allows non-recursive write access to the `$DESKTOP` folder."
|
|
permissions = [
|
|
"write-all",
|
|
"scope-desktop"
|
|
]
|
|
|
|
[[set]]
|
|
identifier = "allow-desktop-meta-recursive"
|
|
description = "This allows full recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics."
|
|
permissions = [
|
|
"read-meta",
|
|
"scope-desktop-recursive"
|
|
]
|
|
|
|
[[set]]
|
|
identifier = "allow-desktop-meta"
|
|
description = "This allows non-recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics."
|
|
permissions = [
|
|
"read-meta",
|
|
"scope-desktop-index"
|
|
] |