File-organizer-Tauri/src-tauri/capabilities/default.json
2026-01-29 00:54:49 +01:00

40 lines
No EOL
722 B
JSON

{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Capability for the main window",
"windows": [
"main"
],
"permissions": [
"core:default",
"opener:default",
"fs:default",
"fs:read-all",
"fs:write-all",
"fs:allow-rename",
"fs:allow-mkdir",
"fs:allow-exists",
"fs:allow-watch",
"fs:read-dirs",
{
"identifier": "fs:scope",
"allow": [
{
"path": "**/*"
}
]
},
"os:default",
"opener:default",
{
"identifier": "opener:allow-open-path",
"allow": [
{
"path": "/**"
}
]
},
"dialog:default",
"process:default"
]
}