Files
tauri/examples/api/src-tauri/capabilities/run-app.json
Lucas Fernandes Nogueira e673854c83 fix(acl): inconsistencies on urlpattern usage for remote domain URL (#9133)
* fix(acl): inconsistencies on urlpattern usage for remote domain URL

* remove println!

* typo

* fix tests
2024-03-11 13:39:17 -03:00

102 lines
2.8 KiB
JSON

{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "run-app",
"description": "permissions to run the app",
"windows": [
"main",
"main-*"
],
"permissions": [
{
"identifier": "allow-log-operation",
"allow": [
{
"event": "tauri-click"
}
]
},
"allow-perform-request",
"app-menu:default",
"sample:allow-ping-scoped",
"sample:global-scope",
"path:default",
"event:default",
"window:default",
"app:default",
"resources:default",
"image:default",
"menu:default",
"tray:default",
"app:allow-app-hide",
"app:allow-app-show",
"window:allow-center",
"window:allow-request-user-attention",
"window:allow-set-resizable",
"window:allow-set-maximizable",
"window:allow-set-minimizable",
"window:allow-set-closable",
"window:allow-set-title",
"window:allow-maximize",
"window:allow-unmaximize",
"window:allow-minimize",
"window:allow-unminimize",
"window:allow-show",
"window:allow-hide",
"window:allow-close",
"window:allow-set-decorations",
"window:allow-set-shadow",
"window:allow-set-effects",
"window:allow-set-always-on-top",
"window:allow-set-always-on-bottom",
"window:allow-set-content-protected",
"window:allow-set-size",
"window:allow-set-min-size",
"window:allow-set-max-size",
"window:allow-set-position",
"window:allow-set-fullscreen",
"window:allow-set-focus",
"window:allow-set-skip-taskbar",
"window:allow-set-cursor-grab",
"window:allow-set-cursor-visible",
"window:allow-set-cursor-icon",
"window:allow-set-cursor-position",
"window:allow-set-ignore-cursor-events",
"window:allow-start-dragging",
"window:allow-set-progress-bar",
"window:allow-set-icon",
"window:allow-toggle-maximize",
"webview:allow-create-webview-window",
"webview:allow-print",
"menu:allow-new",
"menu:allow-append",
"menu:allow-prepend",
"menu:allow-insert",
"menu:allow-remove",
"menu:allow-remove-at",
"menu:allow-items",
"menu:allow-get",
"menu:allow-popup",
"menu:allow-create-default",
"menu:allow-set-as-app-menu",
"menu:allow-set-as-window-menu",
"menu:allow-text",
"menu:allow-set-text",
"menu:allow-is-enabled",
"menu:allow-set-enabled",
"menu:allow-set-accelerator",
"menu:allow-set-as-windows-menu-for-nsapp",
"menu:allow-set-as-help-menu-for-nsapp",
"menu:allow-is-checked",
"menu:allow-set-checked",
"menu:allow-set-icon",
"tray:allow-new",
"tray:allow-set-icon",
"tray:allow-set-menu",
"tray:allow-set-tooltip",
"tray:allow-set-title",
"tray:allow-set-visible",
"tray:allow-set-temp-dir-path",
"tray:allow-set-icon-as-template",
"tray:allow-set-show-menu-on-left-click"
]
}