Files
tauri-plugins-workspace/plugins/store/permissions/default.toml
T
2024-10-16 15:51:24 -03:00

31 lines
530 B
TOML

"$schema" = "schemas/schema.json"
[default]
description = """
This permission set configures what kind of
operations are available from the store plugin.
#### Granted Permissions
All operations are enabled by default.
"""
permissions = [
"allow-create-store",
"allow-load",
"allow-get-store",
"allow-close-store",
"allow-set",
"allow-get",
"allow-has",
"allow-delete",
"allow-clear",
"allow-reset",
"allow-keys",
"allow-values",
"allow-entries",
"allow-length",
"allow-reload",
"allow-save",
]