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

39 lines
732 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"
]
}