mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
format and lockfile
This commit is contained in:
@@ -331,10 +331,10 @@
|
||||
"markdownDescription": "Denies the is_enabled command without any pre-configured scope."
|
||||
},
|
||||
{
|
||||
"description": "This permission set configures if your\napplication can enable or disable auto\nstarting the application on boot.\n\n#### Granted Permissions\n\nIt allows all to check, enable and\ndisable the automatic start on boot.\n\n\n#### This default permission set includes:\n\n- `allow-enable`\n- `allow-disable`\n- `allow-is-enabled`",
|
||||
"description": "This permission set configures if your\r\napplication can enable or disable auto\r\nstarting the application on boot.\r\n\r\n#### Granted Permissions\r\n\r\nIt allows all to check, enable and\r\ndisable the automatic start on boot.\r\n\r\n\n#### This default permission set includes:\n\n- `allow-enable`\n- `allow-disable`\n- `allow-is-enabled`",
|
||||
"type": "string",
|
||||
"const": "default",
|
||||
"markdownDescription": "This permission set configures if your\napplication can enable or disable auto\nstarting the application on boot.\n\n#### Granted Permissions\n\nIt allows all to check, enable and\ndisable the automatic start on boot.\n\n\n#### This default permission set includes:\n\n- `allow-enable`\n- `allow-disable`\n- `allow-is-enabled`"
|
||||
"markdownDescription": "This permission set configures if your\r\napplication can enable or disable auto\r\nstarting the application on boot.\r\n\r\n#### Granted Permissions\r\n\r\nIt allows all to check, enable and\r\ndisable the automatic start on boot.\r\n\r\n\n#### This default permission set includes:\n\n- `allow-enable`\n- `allow-disable`\n- `allow-is-enabled`"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -319,10 +319,10 @@
|
||||
"markdownDescription": "Denies the status command without any pre-configured scope."
|
||||
},
|
||||
{
|
||||
"description": "This permission set configures which\nbiometric features are by default exposed.\n\n#### Granted Permissions\n\nIt allows acccess to all biometric commands.\n\n\n#### This default permission set includes:\n\n- `allow-authenticate`\n- `allow-status`",
|
||||
"description": "This permission set configures which\r\nbiometric features are by default exposed.\r\n\r\n#### Granted Permissions\r\n\r\nIt allows acccess to all biometric commands.\r\n\r\n\n#### This default permission set includes:\n\n- `allow-authenticate`\n- `allow-status`",
|
||||
"type": "string",
|
||||
"const": "default",
|
||||
"markdownDescription": "This permission set configures which\nbiometric features are by default exposed.\n\n#### Granted Permissions\n\nIt allows acccess to all biometric commands.\n\n\n#### This default permission set includes:\n\n- `allow-authenticate`\n- `allow-status`"
|
||||
"markdownDescription": "This permission set configures which\r\nbiometric features are by default exposed.\r\n\r\n#### Granted Permissions\r\n\r\nIt allows acccess to all biometric commands.\r\n\r\n\n#### This default permission set includes:\n\n- `allow-authenticate`\n- `allow-status`"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
## Default Permission
|
||||
|
||||
No features are enabled by default, as we believe
|
||||
the clipboard can be inherently dangerous and it is
|
||||
the clipboard can be inherently dangerous and it is
|
||||
application specific if read and/or write access is needed.
|
||||
|
||||
Clipboard interaction needs to be explicitly enabled.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
[default]
|
||||
description = """
|
||||
No features are enabled by default, as we believe
|
||||
the clipboard can be inherently dangerous and it is
|
||||
the clipboard can be inherently dangerous and it is
|
||||
application specific if read and/or write access is needed.
|
||||
|
||||
Clipboard interaction needs to be explicitly enabled.
|
||||
|
||||
@@ -367,10 +367,10 @@
|
||||
"markdownDescription": "Denies the write_text command without any pre-configured scope."
|
||||
},
|
||||
{
|
||||
"description": "No features are enabled by default, as we believe\nthe clipboard can be inherently dangerous and it is \napplication specific if read and/or write access is needed.\n\nClipboard interaction needs to be explicitly enabled.\n",
|
||||
"description": "No features are enabled by default, as we believe\r\nthe clipboard can be inherently dangerous and it is\r\napplication specific if read and/or write access is needed.\r\n\r\nClipboard interaction needs to be explicitly enabled.\r\n",
|
||||
"type": "string",
|
||||
"const": "default",
|
||||
"markdownDescription": "No features are enabled by default, as we believe\nthe clipboard can be inherently dangerous and it is \napplication specific if read and/or write access is needed.\n\nClipboard interaction needs to be explicitly enabled.\n"
|
||||
"markdownDescription": "No features are enabled by default, as we believe\r\nthe clipboard can be inherently dangerous and it is\r\napplication specific if read and/or write access is needed.\r\n\r\nClipboard interaction needs to be explicitly enabled.\r\n"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$APPCACHE"
|
||||
[[set]]
|
||||
identifier = "allow-appcache-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$APPCACHE` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-appcache-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-appcache-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-appcache-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$APPCACHE` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-appcache-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-appcache-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-appcache-read"
|
||||
description = "This allows non-recursive read access to the `$APPCACHE` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-appcache"
|
||||
]
|
||||
permissions = ["read-all", "scope-appcache"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-appcache-write"
|
||||
description = "This allows non-recursive write access to the `$APPCACHE` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-appcache"
|
||||
]
|
||||
permissions = ["write-all", "scope-appcache"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-appcache-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-appcache-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-appcache-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-appcache-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-appcache-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-appcache-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$APPCONFIG"
|
||||
[[set]]
|
||||
identifier = "allow-appconfig-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$APPCONFIG` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-appconfig-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-appconfig-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-appconfig-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$APPCONFIG` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-appconfig-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-appconfig-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-appconfig-read"
|
||||
description = "This allows non-recursive read access to the `$APPCONFIG` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-appconfig"
|
||||
]
|
||||
permissions = ["read-all", "scope-appconfig"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-appconfig-write"
|
||||
description = "This allows non-recursive write access to the `$APPCONFIG` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-appconfig"
|
||||
]
|
||||
permissions = ["write-all", "scope-appconfig"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-appconfig-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-appconfig-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-appconfig-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-appconfig-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-appconfig-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-appconfig-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$APPDATA"
|
||||
[[set]]
|
||||
identifier = "allow-appdata-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$APPDATA` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-appdata-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-appdata-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-appdata-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$APPDATA` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-appdata-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-appdata-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-appdata-read"
|
||||
description = "This allows non-recursive read access to the `$APPDATA` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-appdata"
|
||||
]
|
||||
permissions = ["read-all", "scope-appdata"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-appdata-write"
|
||||
description = "This allows non-recursive write access to the `$APPDATA` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-appdata"
|
||||
]
|
||||
permissions = ["write-all", "scope-appdata"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-appdata-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-appdata-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-appdata-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-appdata-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-appdata-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-appdata-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$APPLOCALDATA"
|
||||
[[set]]
|
||||
identifier = "allow-applocaldata-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$APPLOCALDATA` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-applocaldata-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-applocaldata-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-applocaldata-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$APPLOCALDATA` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-applocaldata-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-applocaldata-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-applocaldata-read"
|
||||
description = "This allows non-recursive read access to the `$APPLOCALDATA` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-applocaldata"
|
||||
]
|
||||
permissions = ["read-all", "scope-applocaldata"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-applocaldata-write"
|
||||
description = "This allows non-recursive write access to the `$APPLOCALDATA` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-applocaldata"
|
||||
]
|
||||
permissions = ["write-all", "scope-applocaldata"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-applocaldata-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-applocaldata-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-applocaldata-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-applocaldata-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-applocaldata-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-applocaldata-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$APPLOG"
|
||||
[[set]]
|
||||
identifier = "allow-applog-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$APPLOG` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-applog-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-applog-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-applog-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$APPLOG` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-applog-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-applog-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-applog-read"
|
||||
description = "This allows non-recursive read access to the `$APPLOG` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-applog"
|
||||
]
|
||||
permissions = ["read-all", "scope-applog"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-applog-write"
|
||||
description = "This allows non-recursive write access to the `$APPLOG` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-applog"
|
||||
]
|
||||
permissions = ["write-all", "scope-applog"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-applog-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-applog-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-applog-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-applog-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-applog-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-applog-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$AUDIO"
|
||||
[[set]]
|
||||
identifier = "allow-audio-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$AUDIO` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-audio-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-audio-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-audio-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$AUDIO` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-audio-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-audio-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-audio-read"
|
||||
description = "This allows non-recursive read access to the `$AUDIO` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-audio"
|
||||
]
|
||||
permissions = ["read-all", "scope-audio"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-audio-write"
|
||||
description = "This allows non-recursive write access to the `$AUDIO` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-audio"
|
||||
]
|
||||
permissions = ["write-all", "scope-audio"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-audio-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-audio-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-audio-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-audio-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-audio-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-audio-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$CACHE"
|
||||
[[set]]
|
||||
identifier = "allow-cache-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$CACHE` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-cache-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-cache-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-cache-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$CACHE` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-cache-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-cache-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-cache-read"
|
||||
description = "This allows non-recursive read access to the `$CACHE` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-cache"
|
||||
]
|
||||
permissions = ["read-all", "scope-cache"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-cache-write"
|
||||
description = "This allows non-recursive write access to the `$CACHE` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-cache"
|
||||
]
|
||||
permissions = ["write-all", "scope-cache"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-cache-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$CACHE` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-cache-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-cache-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-cache-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$CACHE` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-cache-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-cache-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$CONFIG"
|
||||
[[set]]
|
||||
identifier = "allow-config-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$CONFIG` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-config-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-config-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-config-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$CONFIG` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-config-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-config-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-config-read"
|
||||
description = "This allows non-recursive read access to the `$CONFIG` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-config"
|
||||
]
|
||||
permissions = ["read-all", "scope-config"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-config-write"
|
||||
description = "This allows non-recursive write access to the `$CONFIG` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-config"
|
||||
]
|
||||
permissions = ["write-all", "scope-config"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-config-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-config-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-config-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-config-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-config-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-config-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$DATA"
|
||||
[[set]]
|
||||
identifier = "allow-data-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$DATA` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-data-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-data-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-data-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$DATA` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-data-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-data-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-data-read"
|
||||
description = "This allows non-recursive read access to the `$DATA` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-data"
|
||||
]
|
||||
permissions = ["read-all", "scope-data"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-data-write"
|
||||
description = "This allows non-recursive write access to the `$DATA` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-data"
|
||||
]
|
||||
permissions = ["write-all", "scope-data"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-data-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$DATA` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-data-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-data-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-data-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$DATA` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-data-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-data-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$DESKTOP"
|
||||
[[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"
|
||||
]
|
||||
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"
|
||||
]
|
||||
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"
|
||||
]
|
||||
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"
|
||||
]
|
||||
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"
|
||||
]
|
||||
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"
|
||||
]
|
||||
permissions = ["read-meta", "scope-desktop-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$DOCUMENT"
|
||||
[[set]]
|
||||
identifier = "allow-document-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$DOCUMENT` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-document-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-document-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-document-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$DOCUMENT` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-document-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-document-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-document-read"
|
||||
description = "This allows non-recursive read access to the `$DOCUMENT` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-document"
|
||||
]
|
||||
permissions = ["read-all", "scope-document"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-document-write"
|
||||
description = "This allows non-recursive write access to the `$DOCUMENT` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-document"
|
||||
]
|
||||
permissions = ["write-all", "scope-document"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-document-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-document-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-document-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-document-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-document-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-document-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$DOWNLOAD"
|
||||
[[set]]
|
||||
identifier = "allow-download-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$DOWNLOAD` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-download-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-download-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-download-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$DOWNLOAD` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-download-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-download-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-download-read"
|
||||
description = "This allows non-recursive read access to the `$DOWNLOAD` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-download"
|
||||
]
|
||||
permissions = ["read-all", "scope-download"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-download-write"
|
||||
description = "This allows non-recursive write access to the `$DOWNLOAD` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-download"
|
||||
]
|
||||
permissions = ["write-all", "scope-download"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-download-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-download-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-download-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-download-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-download-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-download-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$EXE"
|
||||
[[set]]
|
||||
identifier = "allow-exe-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$EXE` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-exe-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-exe-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-exe-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$EXE` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-exe-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-exe-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-exe-read"
|
||||
description = "This allows non-recursive read access to the `$EXE` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-exe"
|
||||
]
|
||||
permissions = ["read-all", "scope-exe"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-exe-write"
|
||||
description = "This allows non-recursive write access to the `$EXE` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-exe"
|
||||
]
|
||||
permissions = ["write-all", "scope-exe"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-exe-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$EXE` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-exe-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-exe-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-exe-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$EXE` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-exe-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-exe-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$FONT"
|
||||
[[set]]
|
||||
identifier = "allow-font-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$FONT` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-font-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-font-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-font-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$FONT` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-font-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-font-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-font-read"
|
||||
description = "This allows non-recursive read access to the `$FONT` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-font"
|
||||
]
|
||||
permissions = ["read-all", "scope-font"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-font-write"
|
||||
description = "This allows non-recursive write access to the `$FONT` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-font"
|
||||
]
|
||||
permissions = ["write-all", "scope-font"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-font-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$FONT` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-font-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-font-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-font-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$FONT` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-font-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-font-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$HOME"
|
||||
[[set]]
|
||||
identifier = "allow-home-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$HOME` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-home-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-home-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-home-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$HOME` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-home-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-home-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-home-read"
|
||||
description = "This allows non-recursive read access to the `$HOME` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-home"
|
||||
]
|
||||
permissions = ["read-all", "scope-home"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-home-write"
|
||||
description = "This allows non-recursive write access to the `$HOME` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-home"
|
||||
]
|
||||
permissions = ["write-all", "scope-home"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-home-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$HOME` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-home-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-home-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-home-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$HOME` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-home-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-home-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$LOCALDATA"
|
||||
[[set]]
|
||||
identifier = "allow-localdata-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$LOCALDATA` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-localdata-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-localdata-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-localdata-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$LOCALDATA` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-localdata-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-localdata-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-localdata-read"
|
||||
description = "This allows non-recursive read access to the `$LOCALDATA` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-localdata"
|
||||
]
|
||||
permissions = ["read-all", "scope-localdata"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-localdata-write"
|
||||
description = "This allows non-recursive write access to the `$LOCALDATA` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-localdata"
|
||||
]
|
||||
permissions = ["write-all", "scope-localdata"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-localdata-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-localdata-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-localdata-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-localdata-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-localdata-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-localdata-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$LOG"
|
||||
[[set]]
|
||||
identifier = "allow-log-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$LOG` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-log-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-log-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-log-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$LOG` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-log-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-log-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-log-read"
|
||||
description = "This allows non-recursive read access to the `$LOG` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-log"
|
||||
]
|
||||
permissions = ["read-all", "scope-log"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-log-write"
|
||||
description = "This allows non-recursive write access to the `$LOG` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-log"
|
||||
]
|
||||
permissions = ["write-all", "scope-log"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-log-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$LOG` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-log-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-log-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-log-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$LOG` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-log-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-log-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$PICTURE"
|
||||
[[set]]
|
||||
identifier = "allow-picture-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$PICTURE` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-picture-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-picture-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-picture-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$PICTURE` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-picture-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-picture-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-picture-read"
|
||||
description = "This allows non-recursive read access to the `$PICTURE` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-picture"
|
||||
]
|
||||
permissions = ["read-all", "scope-picture"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-picture-write"
|
||||
description = "This allows non-recursive write access to the `$PICTURE` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-picture"
|
||||
]
|
||||
permissions = ["write-all", "scope-picture"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-picture-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-picture-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-picture-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-picture-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-picture-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-picture-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$PUBLIC"
|
||||
[[set]]
|
||||
identifier = "allow-public-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$PUBLIC` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-public-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-public-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-public-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$PUBLIC` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-public-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-public-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-public-read"
|
||||
description = "This allows non-recursive read access to the `$PUBLIC` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-public"
|
||||
]
|
||||
permissions = ["read-all", "scope-public"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-public-write"
|
||||
description = "This allows non-recursive write access to the `$PUBLIC` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-public"
|
||||
]
|
||||
permissions = ["write-all", "scope-public"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-public-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-public-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-public-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-public-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-public-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-public-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$RESOURCE"
|
||||
[[set]]
|
||||
identifier = "allow-resource-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$RESOURCE` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-resource-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-resource-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-resource-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$RESOURCE` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-resource-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-resource-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-resource-read"
|
||||
description = "This allows non-recursive read access to the `$RESOURCE` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-resource"
|
||||
]
|
||||
permissions = ["read-all", "scope-resource"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-resource-write"
|
||||
description = "This allows non-recursive write access to the `$RESOURCE` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-resource"
|
||||
]
|
||||
permissions = ["write-all", "scope-resource"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-resource-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-resource-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-resource-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-resource-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-resource-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-resource-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$RUNTIME"
|
||||
[[set]]
|
||||
identifier = "allow-runtime-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$RUNTIME` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-runtime-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-runtime-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-runtime-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$RUNTIME` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-runtime-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-runtime-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-runtime-read"
|
||||
description = "This allows non-recursive read access to the `$RUNTIME` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-runtime"
|
||||
]
|
||||
permissions = ["read-all", "scope-runtime"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-runtime-write"
|
||||
description = "This allows non-recursive write access to the `$RUNTIME` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-runtime"
|
||||
]
|
||||
permissions = ["write-all", "scope-runtime"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-runtime-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-runtime-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-runtime-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-runtime-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-runtime-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-runtime-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$TEMP"
|
||||
[[set]]
|
||||
identifier = "allow-temp-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$TEMP` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-temp-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-temp-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-temp-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$TEMP` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-temp-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-temp-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-temp-read"
|
||||
description = "This allows non-recursive read access to the `$TEMP` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-temp"
|
||||
]
|
||||
permissions = ["read-all", "scope-temp"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-temp-write"
|
||||
description = "This allows non-recursive write access to the `$TEMP` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-temp"
|
||||
]
|
||||
permissions = ["write-all", "scope-temp"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-temp-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$TEMP` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-temp-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-temp-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-temp-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$TEMP` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-temp-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-temp-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$TEMPLATE"
|
||||
[[set]]
|
||||
identifier = "allow-template-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$TEMPLATE` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-template-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-template-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-template-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$TEMPLATE` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-template-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-template-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-template-read"
|
||||
description = "This allows non-recursive read access to the `$TEMPLATE` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-template"
|
||||
]
|
||||
permissions = ["read-all", "scope-template"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-template-write"
|
||||
description = "This allows non-recursive write access to the `$TEMPLATE` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-template"
|
||||
]
|
||||
permissions = ["write-all", "scope-template"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-template-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-template-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-template-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-template-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-template-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-template-index"]
|
||||
|
||||
@@ -36,47 +36,29 @@ path = "$VIDEO"
|
||||
[[set]]
|
||||
identifier = "allow-video-read-recursive"
|
||||
description = "This allows full recursive read access to the complete `$VIDEO` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-video-recursive"
|
||||
]
|
||||
permissions = ["read-all", "scope-video-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-video-write-recursive"
|
||||
description = "This allows full recursive write access to the complete `$VIDEO` folder, files and subdirectories."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-video-recursive"
|
||||
]
|
||||
permissions = ["write-all", "scope-video-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-video-read"
|
||||
description = "This allows non-recursive read access to the `$VIDEO` folder."
|
||||
permissions = [
|
||||
"read-all",
|
||||
"scope-video"
|
||||
]
|
||||
permissions = ["read-all", "scope-video"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-video-write"
|
||||
description = "This allows non-recursive write access to the `$VIDEO` folder."
|
||||
permissions = [
|
||||
"write-all",
|
||||
"scope-video"
|
||||
]
|
||||
permissions = ["write-all", "scope-video"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-video-meta-recursive"
|
||||
description = "This allows full recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-video-recursive"
|
||||
]
|
||||
permissions = ["read-meta", "scope-video-recursive"]
|
||||
|
||||
[[set]]
|
||||
identifier = "allow-video-meta"
|
||||
description = "This allows non-recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics."
|
||||
permissions = [
|
||||
"read-meta",
|
||||
"scope-video-index"
|
||||
]
|
||||
permissions = ["read-meta", "scope-video-index"]
|
||||
|
||||
@@ -7,10 +7,7 @@ identifier = "allow-read-text-file-lines"
|
||||
description = "Enables the read_text_file_lines command without any pre-configured scope."
|
||||
|
||||
[permission.commands]
|
||||
allow = [
|
||||
"read_text_file_lines",
|
||||
"read_text_file_lines_next",
|
||||
]
|
||||
allow = ["read_text_file_lines", "read_text_file_lines_next"]
|
||||
deny = []
|
||||
|
||||
[[permission]]
|
||||
|
||||
@@ -7,11 +7,7 @@ identifier = "allow-write-file"
|
||||
description = "Enables the write_file command without any pre-configured scope."
|
||||
|
||||
[permission.commands]
|
||||
allow = [
|
||||
"write_file",
|
||||
"open",
|
||||
"write",
|
||||
]
|
||||
allow = ["write_file", "open", "write"]
|
||||
deny = []
|
||||
|
||||
[[permission]]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
## Default Permission
|
||||
|
||||
This set of permissions describes the what kind of
|
||||
This set of permissions describes what kind of
|
||||
file system access the `fs` plugin has enabled or denied by default.
|
||||
|
||||
#### Granted Permissions
|
||||
|
||||
@@ -1945,16 +1945,16 @@
|
||||
"markdownDescription": "Denies the write_text_file command without any pre-configured scope."
|
||||
},
|
||||
{
|
||||
"description": "This permissions allows to create the application specific directories.\n",
|
||||
"description": "This permissions allows to create the application specific directories.\r\n",
|
||||
"type": "string",
|
||||
"const": "create-app-specific-dirs",
|
||||
"markdownDescription": "This permissions allows to create the application specific directories.\n"
|
||||
"markdownDescription": "This permissions allows to create the application specific directories.\r\n"
|
||||
},
|
||||
{
|
||||
"description": "This set of permissions describes the what kind of\nfile system access the `fs` plugin has enabled or denied by default.\n\n#### Granted Permissions\n\nThis default permission set enables read access to the\napplication specific directories (AppConfig, AppData, AppLocalData, AppCache,\nAppLog) and all files and sub directories created in it.\nThe location of these directories depends on the operating system,\nwhere the application is run.\n\nIn general these directories need to be manually created\nby the application at runtime, before accessing files or folders\nin it is possible.\n\nTherefore, it is also allowed to create all of these folders via\nthe `mkdir` command.\n\n#### Denied Permissions\n\nThis default permission set prevents access to critical components\nof the Tauri application by default.\nOn Windows the webview data folder access is denied.\n\n#### This default permission set includes:\n\n- `create-app-specific-dirs`\n- `read-app-specific-dirs-recursive`\n- `deny-default`",
|
||||
"description": "This set of permissions describes what kind of\nfile system access the `fs` plugin has enabled or denied by default.\n\n#### Granted Permissions\n\nThis default permission set enables read access to the\napplication specific directories (AppConfig, AppData, AppLocalData, AppCache,\nAppLog) and all files and sub directories created in it.\nThe location of these directories depends on the operating system,\nwhere the application is run.\n\nIn general these directories need to be manually created\nby the application at runtime, before accessing files or folders\nin it is possible.\n\nTherefore, it is also allowed to create all of these folders via\nthe `mkdir` command.\n\n#### Denied Permissions\n\nThis default permission set prevents access to critical components\nof the Tauri application by default.\nOn Windows the webview data folder access is denied.\n\n#### This default permission set includes:\n\n- `create-app-specific-dirs`\n- `read-app-specific-dirs-recursive`\n- `deny-default`",
|
||||
"type": "string",
|
||||
"const": "default",
|
||||
"markdownDescription": "This set of permissions describes the what kind of\nfile system access the `fs` plugin has enabled or denied by default.\n\n#### Granted Permissions\n\nThis default permission set enables read access to the\napplication specific directories (AppConfig, AppData, AppLocalData, AppCache,\nAppLog) and all files and sub directories created in it.\nThe location of these directories depends on the operating system,\nwhere the application is run.\n\nIn general these directories need to be manually created\nby the application at runtime, before accessing files or folders\nin it is possible.\n\nTherefore, it is also allowed to create all of these folders via\nthe `mkdir` command.\n\n#### Denied Permissions\n\nThis default permission set prevents access to critical components\nof the Tauri application by default.\nOn Windows the webview data folder access is denied.\n\n#### This default permission set includes:\n\n- `create-app-specific-dirs`\n- `read-app-specific-dirs-recursive`\n- `deny-default`"
|
||||
"markdownDescription": "This set of permissions describes what kind of\nfile system access the `fs` plugin has enabled or denied by default.\n\n#### Granted Permissions\n\nThis default permission set enables read access to the\napplication specific directories (AppConfig, AppData, AppLocalData, AppCache,\nAppLog) and all files and sub directories created in it.\nThe location of these directories depends on the operating system,\nwhere the application is run.\n\nIn general these directories need to be manually created\nby the application at runtime, before accessing files or folders\nin it is possible.\n\nTherefore, it is also allowed to create all of these folders via\nthe `mkdir` command.\n\n#### Denied Permissions\n\nThis default permission set prevents access to critical components\nof the Tauri application by default.\nOn Windows the webview data folder access is denied.\n\n#### This default permission set includes:\n\n- `create-app-specific-dirs`\n- `read-app-specific-dirs-recursive`\n- `deny-default`"
|
||||
},
|
||||
{
|
||||
"description": "This denies access to dangerous Tauri relevant files and folders by default.\n#### This permission set includes:\n\n- `deny-webview-data-linux`\n- `deny-webview-data-windows`",
|
||||
@@ -1963,16 +1963,16 @@
|
||||
"markdownDescription": "This denies access to dangerous Tauri relevant files and folders by default.\n#### This permission set includes:\n\n- `deny-webview-data-linux`\n- `deny-webview-data-windows`"
|
||||
},
|
||||
{
|
||||
"description": "This denies read access to the\n`$APPLOCALDATA` folder on linux as the webview data and configuration values are stored here.\nAllowing access can lead to sensitive information disclosure and should be well considered.",
|
||||
"description": "This denies read access to the\r\n`$APPLOCALDATA` folder on linux as the webview data and configuration values are stored here.\r\nAllowing access can lead to sensitive information disclosure and should be well considered.",
|
||||
"type": "string",
|
||||
"const": "deny-webview-data-linux",
|
||||
"markdownDescription": "This denies read access to the\n`$APPLOCALDATA` folder on linux as the webview data and configuration values are stored here.\nAllowing access can lead to sensitive information disclosure and should be well considered."
|
||||
"markdownDescription": "This denies read access to the\r\n`$APPLOCALDATA` folder on linux as the webview data and configuration values are stored here.\r\nAllowing access can lead to sensitive information disclosure and should be well considered."
|
||||
},
|
||||
{
|
||||
"description": "This denies read access to the\n`$APPLOCALDATA/EBWebView` folder on windows as the webview data and configuration values are stored here.\nAllowing access can lead to sensitive information disclosure and should be well considered.",
|
||||
"description": "This denies read access to the\r\n`$APPLOCALDATA/EBWebView` folder on windows as the webview data and configuration values are stored here.\r\nAllowing access can lead to sensitive information disclosure and should be well considered.",
|
||||
"type": "string",
|
||||
"const": "deny-webview-data-windows",
|
||||
"markdownDescription": "This denies read access to the\n`$APPLOCALDATA/EBWebView` folder on windows as the webview data and configuration values are stored here.\nAllowing access can lead to sensitive information disclosure and should be well considered."
|
||||
"markdownDescription": "This denies read access to the\r\n`$APPLOCALDATA/EBWebView` folder on windows as the webview data and configuration values are stored here.\r\nAllowing access can lead to sensitive information disclosure and should be well considered."
|
||||
},
|
||||
{
|
||||
"description": "This enables all read related commands without any pre-configured accessible paths.",
|
||||
@@ -1981,10 +1981,10 @@
|
||||
"markdownDescription": "This enables all read related commands without any pre-configured accessible paths."
|
||||
},
|
||||
{
|
||||
"description": "This permission allows recursive read functionality on the application\nspecific base directories. \n",
|
||||
"description": "This permission allows recursive read functionality on the application\r\nspecific base directories. \r\n",
|
||||
"type": "string",
|
||||
"const": "read-app-specific-dirs-recursive",
|
||||
"markdownDescription": "This permission allows recursive read functionality on the application\nspecific base directories. \n"
|
||||
"markdownDescription": "This permission allows recursive read functionality on the application\r\nspecific base directories. \r\n"
|
||||
},
|
||||
{
|
||||
"description": "This enables directory read and file metadata related commands without any pre-configured accessible paths.",
|
||||
@@ -2005,10 +2005,10 @@
|
||||
"markdownDescription": "This enables all index or metadata related commands without any pre-configured accessible paths."
|
||||
},
|
||||
{
|
||||
"description": "An empty permission you can use to modify the global scope.\n\n## Example\n\n```json\n{\n \"identifier\": \"read-documents\",\n \"windows\": [\"main\"],\n \"permissions\": [\n \"fs:allow-read\",\n {\n \"identifier\": \"fs:scope\",\n \"allow\": [\n \"$APPDATA/documents/**/*\"\n ],\n \"deny\": [\n \"$APPDATA/documents/secret.txt\"\n ]\n }\n ]\n}\n```\n",
|
||||
"description": "An empty permission you can use to modify the global scope.\r\n\r\n## Example\r\n\r\n```json\r\n{\r\n \"identifier\": \"read-documents\",\r\n \"windows\": [\"main\"],\r\n \"permissions\": [\r\n \"fs:allow-read\",\r\n {\r\n \"identifier\": \"fs:scope\",\r\n \"allow\": [\r\n \"$APPDATA/documents/**/*\"\r\n ],\r\n \"deny\": [\r\n \"$APPDATA/documents/secret.txt\"\r\n ]\r\n }\r\n ]\r\n}\r\n```\r\n",
|
||||
"type": "string",
|
||||
"const": "scope",
|
||||
"markdownDescription": "An empty permission you can use to modify the global scope.\n\n## Example\n\n```json\n{\n \"identifier\": \"read-documents\",\n \"windows\": [\"main\"],\n \"permissions\": [\n \"fs:allow-read\",\n {\n \"identifier\": \"fs:scope\",\n \"allow\": [\n \"$APPDATA/documents/**/*\"\n ],\n \"deny\": [\n \"$APPDATA/documents/secret.txt\"\n ]\n }\n ]\n}\n```\n"
|
||||
"markdownDescription": "An empty permission you can use to modify the global scope.\r\n\r\n## Example\r\n\r\n```json\r\n{\r\n \"identifier\": \"read-documents\",\r\n \"windows\": [\"main\"],\r\n \"permissions\": [\r\n \"fs:allow-read\",\r\n {\r\n \"identifier\": \"fs:scope\",\r\n \"allow\": [\r\n \"$APPDATA/documents/**/*\"\r\n ],\r\n \"deny\": [\r\n \"$APPDATA/documents/secret.txt\"\r\n ]\r\n }\r\n ]\r\n}\r\n```\r\n"
|
||||
},
|
||||
{
|
||||
"description": "This enables all write related commands without any pre-configured accessible paths.",
|
||||
|
||||
@@ -343,10 +343,10 @@
|
||||
"markdownDescription": "Denies the fetch_send command without any pre-configured scope."
|
||||
},
|
||||
{
|
||||
"description": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-read-body`\n- `allow-fetch-send`",
|
||||
"description": "This permission set configures what kind of\r\nfetch operations are available from the http plugin.\r\n\r\nThis enables all fetch operations but does not\r\nallow explicitly any origins to be fetched. This needs to\r\nbe manually configured before usage.\r\n\r\n#### Granted Permissions\r\n\r\nAll fetch operations are enabled.\r\n\r\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-read-body`\n- `allow-fetch-send`",
|
||||
"type": "string",
|
||||
"const": "default",
|
||||
"markdownDescription": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-read-body`\n- `allow-fetch-send`"
|
||||
"markdownDescription": "This permission set configures what kind of\r\nfetch operations are available from the http plugin.\r\n\r\nThis enables all fetch operations but does not\r\nallow explicitly any origins to be fetched. This needs to\r\nbe manually configured before usage.\r\n\r\n#### Granted Permissions\r\n\r\nAll fetch operations are enabled.\r\n\r\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-read-body`\n- `allow-fetch-send`"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -331,10 +331,10 @@
|
||||
"markdownDescription": "Denies the write command without any pre-configured scope."
|
||||
},
|
||||
{
|
||||
"description": "This permission set configures what kind of\noperations are available from the nfc plugin.\n\n#### Granted Permissions\n\nChecking if the NFC functionality is available\nand scanning nearby tags is allowed.\nWriting to tags needs to be manually enabled.\n\n\n#### This default permission set includes:\n\n- `allow-is-available`\n- `allow-scan`",
|
||||
"description": "This permission set configures what kind of\r\noperations are available from the nfc plugin.\r\n\r\n#### Granted Permissions\r\n\r\nChecking if the NFC functionality is available\r\nand scanning nearby tags is allowed.\r\nWriting to tags needs to be manually enabled.\r\n\r\n\n#### This default permission set includes:\n\n- `allow-is-available`\n- `allow-scan`",
|
||||
"type": "string",
|
||||
"const": "default",
|
||||
"markdownDescription": "This permission set configures what kind of\noperations are available from the nfc plugin.\n\n#### Granted Permissions\n\nChecking if the NFC functionality is available\nand scanning nearby tags is allowed.\nWriting to tags needs to be manually enabled.\n\n\n#### This default permission set includes:\n\n- `allow-is-available`\n- `allow-scan`"
|
||||
"markdownDescription": "This permission set configures what kind of\r\noperations are available from the nfc plugin.\r\n\r\n#### Granted Permissions\r\n\r\nChecking if the NFC functionality is available\r\nand scanning nearby tags is allowed.\r\nWriting to tags needs to be manually enabled.\r\n\r\n\n#### This default permission set includes:\n\n- `allow-is-available`\n- `allow-scan`"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -391,10 +391,10 @@
|
||||
"markdownDescription": "Denies the version command without any pre-configured scope."
|
||||
},
|
||||
{
|
||||
"description": "This permission set configures which\noperating system information are available\nto gather from the frontend.\n\n#### Granted Permissions\n\nAll information except the host name are available.\n\n\n#### This default permission set includes:\n\n- `allow-arch`\n- `allow-exe-extension`\n- `allow-family`\n- `allow-locale`\n- `allow-os-type`\n- `allow-platform`\n- `allow-version`",
|
||||
"description": "This permission set configures which\r\noperating system information are available\r\nto gather from the frontend.\r\n\r\n#### Granted Permissions\r\n\r\nAll information except the host name are available.\r\n\r\n\n#### This default permission set includes:\n\n- `allow-arch`\n- `allow-exe-extension`\n- `allow-family`\n- `allow-locale`\n- `allow-os-type`\n- `allow-platform`\n- `allow-version`",
|
||||
"type": "string",
|
||||
"const": "default",
|
||||
"markdownDescription": "This permission set configures which\noperating system information are available\nto gather from the frontend.\n\n#### Granted Permissions\n\nAll information except the host name are available.\n\n\n#### This default permission set includes:\n\n- `allow-arch`\n- `allow-exe-extension`\n- `allow-family`\n- `allow-locale`\n- `allow-os-type`\n- `allow-platform`\n- `allow-version`"
|
||||
"markdownDescription": "This permission set configures which\r\noperating system information are available\r\nto gather from the frontend.\r\n\r\n#### Granted Permissions\r\n\r\nAll information except the host name are available.\r\n\r\n\n#### This default permission set includes:\n\n- `allow-arch`\n- `allow-exe-extension`\n- `allow-family`\n- `allow-locale`\n- `allow-os-type`\n- `allow-platform`\n- `allow-version`"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -319,10 +319,10 @@
|
||||
"markdownDescription": "Denies the restart command without any pre-configured scope."
|
||||
},
|
||||
{
|
||||
"description": "This permission set configures which\nprocess features are by default exposed.\n\n#### Granted Permissions\n\nThis enables to quit via `allow-exit` and restart via `allow-restart`\nthe application.\n\n#### This default permission set includes:\n\n- `allow-exit`\n- `allow-restart`",
|
||||
"description": "This permission set configures which\r\nprocess features are by default exposed.\r\n\r\n#### Granted Permissions\r\n\r\nThis enables to quit via `allow-exit` and restart via `allow-restart`\r\nthe application.\r\n\n#### This default permission set includes:\n\n- `allow-exit`\n- `allow-restart`",
|
||||
"type": "string",
|
||||
"const": "default",
|
||||
"markdownDescription": "This permission set configures which\nprocess features are by default exposed.\n\n#### Granted Permissions\n\nThis enables to quit via `allow-exit` and restart via `allow-restart`\nthe application.\n\n#### This default permission set includes:\n\n- `allow-exit`\n- `allow-restart`"
|
||||
"markdownDescription": "This permission set configures which\r\nprocess features are by default exposed.\r\n\r\n#### Granted Permissions\r\n\r\nThis enables to quit via `allow-exit` and restart via `allow-restart`\r\nthe application.\r\n\n#### This default permission set includes:\n\n- `allow-exit`\n- `allow-restart`"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -45,11 +45,13 @@ windows-native-keyring-store = "0.2"
|
||||
|
||||
[target.'cfg(target_os = "linux")'.dependencies]
|
||||
# TODO: upstream is on keyring-core@0.6 while windows & apple backends only have 0.5 and 0.7 releases.
|
||||
zbus-secret-service-keyring-store = { git = "https://github.com/FabianLars/zbus-secret-service-keyring-store", features = ["rt-tokio-crypto-rust"] }
|
||||
zbus-secret-service-keyring-store = { git = "https://github.com/FabianLars/zbus-secret-service-keyring-store", features = [
|
||||
"rt-tokio-crypto-rust",
|
||||
] }
|
||||
|
||||
[target.'cfg(any(target_os = "ios", target_os = "macos"))'.dependencies]
|
||||
apple-native-keyring-store = "0.2"
|
||||
|
||||
[target.'cfg(target_os = "android")'.dependencies]
|
||||
# TODO: upstream is on keyring-core@0.6 while windows & apple backends only have 0.5 and 0.7 releases.
|
||||
android-native-keyring-store = { git = "https://github.com/FabianLars/android-native-keyring-store" }
|
||||
android-native-keyring-store = { git = "https://github.com/FabianLars/android-native-keyring-store" }
|
||||
|
||||
@@ -24,6 +24,6 @@
|
||||
"LICENSE"
|
||||
],
|
||||
"dependencies": {
|
||||
"@tauri-apps/api": "^2.6.0"
|
||||
"@tauri-apps/api": "^2.8.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -343,10 +343,10 @@
|
||||
"markdownDescription": "Denies the set_string command without any pre-configured scope."
|
||||
},
|
||||
{
|
||||
"description": "This permission set configures which\nSecure Storage APIs are available by defaultt.\n\n#### Granted Permissions\n\nIn the PoC phase all commands are allowed by default.\n\n\n#### This default permission set includes:\n\n- `allow-arch`\n- `allow-exe-extension`\n- `allow-family`\n- `allow-locale`\n- `allow-os-type`\n- `allow-platform`\n- `allow-version`",
|
||||
"description": "This permission set configures which\r\nSecure Storage APIs are available by defaultt.\r\n\r\n#### Granted Permissions\r\n\r\nIn the PoC phase all commands are allowed by default.\r\n\r\n\n#### This default permission set includes:\n\n- `allow-arch`\n- `allow-exe-extension`\n- `allow-family`\n- `allow-locale`\n- `allow-os-type`\n- `allow-platform`\n- `allow-version`",
|
||||
"type": "string",
|
||||
"const": "default",
|
||||
"markdownDescription": "This permission set configures which\nSecure Storage APIs are available by defaultt.\n\n#### Granted Permissions\n\nIn the PoC phase all commands are allowed by default.\n\n\n#### This default permission set includes:\n\n- `allow-arch`\n- `allow-exe-extension`\n- `allow-family`\n- `allow-locale`\n- `allow-os-type`\n- `allow-platform`\n- `allow-version`"
|
||||
"markdownDescription": "This permission set configures which\r\nSecure Storage APIs are available by defaultt.\r\n\r\n#### Granted Permissions\r\n\r\nIn the PoC phase all commands are allowed by default.\r\n\r\n\n#### This default permission set includes:\n\n- `allow-arch`\n- `allow-exe-extension`\n- `allow-family`\n- `allow-locale`\n- `allow-os-type`\n- `allow-platform`\n- `allow-version`"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -355,10 +355,10 @@
|
||||
"markdownDescription": "Denies the stdin_write command without any pre-configured scope."
|
||||
},
|
||||
{
|
||||
"description": "This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality with a reasonable\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n\n#### This default permission set includes:\n\n- `allow-open`",
|
||||
"description": "This permission set configures which\r\nshell functionality is exposed by default.\r\n\r\n#### Granted Permissions\r\n\r\nIt allows to use the `open` functionality with a reasonable\r\nscope pre-configured. It will allow opening `http(s)://`,\r\n`tel:` and `mailto:` links.\r\n\n#### This default permission set includes:\n\n- `allow-open`",
|
||||
"type": "string",
|
||||
"const": "default",
|
||||
"markdownDescription": "This permission set configures which\nshell functionality is exposed by default.\n\n#### Granted Permissions\n\nIt allows to use the `open` functionality with a reasonable\nscope pre-configured. It will allow opening `http(s)://`,\n`tel:` and `mailto:` links.\n\n#### This default permission set includes:\n\n- `allow-open`"
|
||||
"markdownDescription": "This permission set configures which\r\nshell functionality is exposed by default.\r\n\r\n#### Granted Permissions\r\n\r\nIt allows to use the `open` functionality with a reasonable\r\nscope pre-configured. It will allow opening `http(s)://`,\r\n`tel:` and `mailto:` links.\r\n\n#### This default permission set includes:\n\n- `allow-open`"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -343,10 +343,10 @@
|
||||
"markdownDescription": "Denies the select command without any pre-configured scope."
|
||||
},
|
||||
{
|
||||
"description": "### Default Permissions\n\nThis permission set configures what kind of\ndatabase operations are available from the sql plugin.\n\n### Granted Permissions\n\nAll reading related operations are enabled.\nAlso allows to load or close a connection.\n\n\n#### This default permission set includes:\n\n- `allow-close`\n- `allow-load`\n- `allow-select`",
|
||||
"description": "### Default Permissions\r\n\r\nThis permission set configures what kind of\r\ndatabase operations are available from the sql plugin.\r\n\r\n### Granted Permissions\r\n\r\nAll reading related operations are enabled.\r\nAlso allows to load or close a connection.\r\n\r\n\n#### This default permission set includes:\n\n- `allow-close`\n- `allow-load`\n- `allow-select`",
|
||||
"type": "string",
|
||||
"const": "default",
|
||||
"markdownDescription": "### Default Permissions\n\nThis permission set configures what kind of\ndatabase operations are available from the sql plugin.\n\n### Granted Permissions\n\nAll reading related operations are enabled.\nAlso allows to load or close a connection.\n\n\n#### This default permission set includes:\n\n- `allow-close`\n- `allow-load`\n- `allow-select`"
|
||||
"markdownDescription": "### Default Permissions\r\n\r\nThis permission set configures what kind of\r\ndatabase operations are available from the sql plugin.\r\n\r\n### Granted Permissions\r\n\r\nAll reading related operations are enabled.\r\nAlso allows to load or close a connection.\r\n\r\n\n#### This default permission set includes:\n\n- `allow-close`\n- `allow-load`\n- `allow-select`"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -319,10 +319,10 @@
|
||||
"markdownDescription": "Denies the upload command without any pre-configured scope."
|
||||
},
|
||||
{
|
||||
"description": "This permission set configures what kind of\noperations are available from the upload plugin.\n\n#### Granted Permissions\n\nAll operations are enabled by default.\n\n\n#### This default permission set includes:\n\n- `allow-upload`\n- `allow-download`",
|
||||
"description": "This permission set configures what kind of\r\noperations are available from the upload plugin.\r\n\r\n#### Granted Permissions\r\n\r\nAll operations are enabled by default.\r\n\r\n\n#### This default permission set includes:\n\n- `allow-upload`\n- `allow-download`",
|
||||
"type": "string",
|
||||
"const": "default",
|
||||
"markdownDescription": "This permission set configures what kind of\noperations are available from the upload plugin.\n\n#### Granted Permissions\n\nAll operations are enabled by default.\n\n\n#### This default permission set includes:\n\n- `allow-upload`\n- `allow-download`"
|
||||
"markdownDescription": "This permission set configures what kind of\r\noperations are available from the upload plugin.\r\n\r\n#### Granted Permissions\r\n\r\nAll operations are enabled by default.\r\n\r\n\n#### This default permission set includes:\n\n- `allow-upload`\n- `allow-download`"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Generated
+13
-15
@@ -285,8 +285,8 @@ importers:
|
||||
plugins/secure-storage:
|
||||
dependencies:
|
||||
'@tauri-apps/api':
|
||||
specifier: ^2.6.0
|
||||
version: 2.7.0
|
||||
specifier: ^2.8.0
|
||||
version: 2.8.0
|
||||
|
||||
plugins/shell:
|
||||
dependencies:
|
||||
@@ -2366,9 +2366,9 @@ snapshots:
|
||||
- encoding
|
||||
- mocha
|
||||
|
||||
'@covector/assemble@0.12.0(mocha@10.8.2)':
|
||||
'@covector/assemble@0.12.0':
|
||||
dependencies:
|
||||
'@covector/command': 0.8.0(mocha@10.8.2)
|
||||
'@covector/command': 0.8.0
|
||||
'@covector/files': 0.8.0
|
||||
effection: 2.0.8(mocha@10.8.2)
|
||||
js-yaml: 4.1.0
|
||||
@@ -2379,10 +2379,9 @@ snapshots:
|
||||
unified: 9.2.2
|
||||
transitivePeerDependencies:
|
||||
- encoding
|
||||
- mocha
|
||||
- supports-color
|
||||
|
||||
'@covector/changelog@0.12.0(mocha@10.8.2)':
|
||||
'@covector/changelog@0.12.0':
|
||||
dependencies:
|
||||
'@covector/files': 0.8.0
|
||||
effection: 2.0.8(mocha@10.8.2)
|
||||
@@ -2392,16 +2391,14 @@ snapshots:
|
||||
unified: 9.2.2
|
||||
transitivePeerDependencies:
|
||||
- encoding
|
||||
- mocha
|
||||
- supports-color
|
||||
|
||||
'@covector/command@0.8.0(mocha@10.8.2)':
|
||||
'@covector/command@0.8.0':
|
||||
dependencies:
|
||||
'@effection/process': 2.1.4(mocha@10.8.2)
|
||||
'@effection/process': 2.1.4
|
||||
effection: 2.0.8(mocha@10.8.2)
|
||||
transitivePeerDependencies:
|
||||
- encoding
|
||||
- mocha
|
||||
|
||||
'@covector/files@0.8.0':
|
||||
dependencies:
|
||||
@@ -2448,8 +2445,10 @@ snapshots:
|
||||
dependencies:
|
||||
effection: 2.0.8(mocha@10.8.2)
|
||||
mocha: 10.8.2
|
||||
transitivePeerDependencies:
|
||||
- encoding
|
||||
|
||||
'@effection/process@2.1.4(mocha@10.8.2)':
|
||||
'@effection/process@2.1.4':
|
||||
dependencies:
|
||||
cross-spawn: 7.0.6
|
||||
ctrlc-windows: 2.2.0
|
||||
@@ -2457,7 +2456,6 @@ snapshots:
|
||||
shellwords: 0.1.1
|
||||
transitivePeerDependencies:
|
||||
- encoding
|
||||
- mocha
|
||||
|
||||
'@effection/stream@2.0.6':
|
||||
dependencies:
|
||||
@@ -3294,9 +3292,9 @@ snapshots:
|
||||
dependencies:
|
||||
'@clack/prompts': 0.7.0
|
||||
'@covector/apply': 0.10.0(mocha@10.8.2)
|
||||
'@covector/assemble': 0.12.0(mocha@10.8.2)
|
||||
'@covector/changelog': 0.12.0(mocha@10.8.2)
|
||||
'@covector/command': 0.8.0(mocha@10.8.2)
|
||||
'@covector/assemble': 0.12.0
|
||||
'@covector/changelog': 0.12.0
|
||||
'@covector/command': 0.8.0
|
||||
'@covector/files': 0.8.0
|
||||
effection: 2.0.8(mocha@10.8.2)
|
||||
globby: 11.1.0
|
||||
|
||||
@@ -24,6 +24,6 @@
|
||||
"LICENSE"
|
||||
],
|
||||
"dependencies": {
|
||||
"@tauri-apps/api": "^2.6.0"
|
||||
"@tauri-apps/api": "^2.8.0"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user