Files
tauri-plugins-workspace/plugins/store/permissions/default.toml
T
Lucas Nogueira afbb5aae05 fmt
2024-10-15 08:08:52 -03:00

31 lines
538 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-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-load",
"allow-save",
]