mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-25 11:46:06 +02:00
31 lines
539 B
TOML
31 lines
539 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-new-or-existing",
|
|
"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",
|
|
]
|