mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
0cb1baf09a
* Add default permissions to most plugins. Co-authored-by: chippers <chip@chip.sh> Co-authored-by: fabianlars <fabianlars@fabianlars.de> * updated default description * mobile plugin relevant changes --------- Co-authored-by: chippers <chip@chip.sh> Co-authored-by: fabianlars <fabianlars@fabianlars.de>
21 lines
382 B
TOML
21 lines
382 B
TOML
"$schema" = "schemas/schema.json"
|
|
|
|
[default]
|
|
description = """
|
|
# Tauri SQL Default Permissions
|
|
|
|
This permission set configures what kind of
|
|
database operations are available from the sql plugin.
|
|
|
|
### Granted Permissions
|
|
|
|
All reading related operations are enabled.
|
|
Also allows to load or close a connection.
|
|
|
|
"""
|
|
permissions = [
|
|
"allow-close",
|
|
"allow-load",
|
|
"allow-select",
|
|
]
|