wraith/src-tauri/capabilities/default.json
Vantz Stockwell 016906fc9d
Some checks failed
Build & Sign Wraith / Build Windows + Sign (push) Has been cancelled
fix: add window/webview creation permissions for tool popup windows
Tauri v2 ACL requires explicit permissions to create windows from the
frontend. Added core🪟allow-create and
core:webview:allow-create-webview-window so the Tools menu can open
popup windows.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-25 00:56:34 -04:00

15 lines
359 B
JSON

{
"identifier": "default",
"description": "Default capabilities for the main Wraith window",
"windows": ["main", "tool-*"],
"permissions": [
"core:default",
"core:event:default",
"core:window:default",
"core:window:allow-create",
"core:webview:default",
"core:webview:allow-create-webview-window",
"shell:allow-open"
]
}