mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
d198c01486
Co-authored-by: Lucas Nogueira <lucas@tauri.app> Co-authored-by: Lucas Nogueira <lucas@crabnebula.dev>
29 lines
835 B
TOML
29 lines
835 B
TOML
"$schema" = "schemas/schema.json"
|
|
|
|
[default]
|
|
description = """
|
|
# Tauri `fs` default permissions
|
|
|
|
This configuration file defines the default permissions granted
|
|
to the filesystem.
|
|
|
|
### Granted Permissions
|
|
|
|
This default permission set enables all read-related commands and
|
|
allows access to the `$APP` folder and sub directories created in it.
|
|
The location of the `$APP` folder depends on the operating system,
|
|
where the application is run.
|
|
|
|
In general the `$APP` folder needs to be manually created
|
|
by the application at runtime, before accessing files or folders
|
|
in it is possible.
|
|
|
|
### Denied Permissions
|
|
|
|
This default permission set prevents access to critical components
|
|
of the Tauri application by default.
|
|
On Windows the webview data folder access is denied.
|
|
|
|
"""
|
|
permissions = ["read-all", "scope-app-recursive", "deny-default"]
|