Files
tauri-plugins-workspace/plugins/stronghold/permissions/autogenerated/reference.md
T
renovate[bot]GitHubrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>Tony
f209b2f23c chore(deps): update tauri monorepo to v2.6.0 (v2) (#2804)
* chore(deps): update tauri monorepo to v2.6.0

* Regenerate api-iife.js

* Bump rust tauri

* Tweak all examples to match the new features

* Bump workspace min tauri version

* Bump `@tauri-apps/api` to ^2.6

* Add change file

* Update lock file

* missing `"`

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Tony <legendmastertony@gmail.com>
2025-06-25 17:52:38 +08:00

316 lines
3.5 KiB
Markdown

## Default Permission
This permission set configures what kind of
operations are available from the stronghold plugin.
#### Granted Permissions
All non-destructive operations are enabled by default.
#### This default permission set includes the following:
- `allow-create-client`
- `allow-get-store-record`
- `allow-initialize`
- `allow-execute-procedure`
- `allow-load-client`
- `allow-save-secret`
- `allow-save-store-record`
- `allow-save`
## Permission Table
<table>
<tr>
<th>Identifier</th>
<th>Description</th>
</tr>
<tr>
<td>
`stronghold:allow-create-client`
</td>
<td>
Enables the create_client command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:deny-create-client`
</td>
<td>
Denies the create_client command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:allow-destroy`
</td>
<td>
Enables the destroy command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:deny-destroy`
</td>
<td>
Denies the destroy command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:allow-execute-procedure`
</td>
<td>
Enables the execute_procedure command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:deny-execute-procedure`
</td>
<td>
Denies the execute_procedure command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:allow-get-store-record`
</td>
<td>
Enables the get_store_record command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:deny-get-store-record`
</td>
<td>
Denies the get_store_record command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:allow-initialize`
</td>
<td>
Enables the initialize command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:deny-initialize`
</td>
<td>
Denies the initialize command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:allow-load-client`
</td>
<td>
Enables the load_client command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:deny-load-client`
</td>
<td>
Denies the load_client command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:allow-remove-secret`
</td>
<td>
Enables the remove_secret command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:deny-remove-secret`
</td>
<td>
Denies the remove_secret command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:allow-remove-store-record`
</td>
<td>
Enables the remove_store_record command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:deny-remove-store-record`
</td>
<td>
Denies the remove_store_record command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:allow-save`
</td>
<td>
Enables the save command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:deny-save`
</td>
<td>
Denies the save command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:allow-save-secret`
</td>
<td>
Enables the save_secret command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:deny-save-secret`
</td>
<td>
Denies the save_secret command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:allow-save-store-record`
</td>
<td>
Enables the save_store_record command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`stronghold:deny-save-store-record`
</td>
<td>
Denies the save_store_record command without any pre-configured scope.
</td>
</tr>
</table>