Files
tauri-plugins-workspace/plugins/store/permissions/default.toml
T
2024-10-05 16:21:27 +08:00

31 lines
548 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-create-or-existing-store",
"allow-get-store",
"allow-close-store",
"allow-clear",
"allow-delete",
"allow-entries",
"allow-get",
"allow-has",
"allow-keys",
"allow-length",
"allow-load",
"allow-reset",
"allow-save",
"allow-set",
"allow-values",
]