Decky/app/src-tauri/capabilities/default.json

23 lines
601 B
JSON

{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Permissions required by the Decky main window",
"windows": ["main"],
"permissions": [
"core:default",
"core:window:allow-close",
"core:window:allow-minimize",
"core:window:allow-toggle-maximize",
"core:window:allow-start-dragging",
"process:allow-restart",
"updater:default",
{
"identifier": "http:default",
"allow": [
{ "url": "https://**" },
{ "url": "http://localhost:**" },
{ "url": "http://127.0.0.1:**" }
]
}
]
}