mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-23 11:36:13 +02:00
d198c01486
Co-authored-by: Lucas Nogueira <lucas@tauri.app> Co-authored-by: Lucas Nogueira <lucas@crabnebula.dev>
20 lines
726 B
TOML
20 lines
726 B
TOML
"$schema" = "schemas/schema.json"
|
|
|
|
[[permission]]
|
|
identifier = "deny-webview-data-linux"
|
|
description = """This denies read access to the
|
|
`$APPLOCALDATA` folder on linux as the webview data and configuration values are stored here.
|
|
Allowing access can lead to sensitive information disclosure and should be well considered."""
|
|
|
|
[[scope.deny]]
|
|
path = "$APPLOCALDATA/**"
|
|
|
|
[[permission]]
|
|
identifier = "deny-webview-data-windows"
|
|
description = """This denies read access to the
|
|
`$APPLOCALDATA/EBWebView` folder on windows as the webview data and configuration values are stored here.
|
|
Allowing access can lead to sensitive information disclosure and should be well considered."""
|
|
|
|
[[scope.deny]]
|
|
path = "$APPLOCALDATA/EBWebView/**"
|