mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-06-12 14:17:48 +02:00
133 lines
1.5 KiB
Markdown
133 lines
1.5 KiB
Markdown
## Default Permission
|
|
|
|
This permission set configures which
|
|
Secure Storage APIs are available by defaultt.
|
|
|
|
#### Granted Permissions
|
|
|
|
In the PoC phase all commands are allowed by default.
|
|
|
|
#### This default permission set includes the following:
|
|
|
|
- `allow-arch`
|
|
- `allow-exe-extension`
|
|
- `allow-family`
|
|
- `allow-locale`
|
|
- `allow-os-type`
|
|
- `allow-platform`
|
|
- `allow-version`
|
|
|
|
## Permission Table
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Identifier</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`secure-storage:allow-get-binary`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the get_binary command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`secure-storage:deny-get-binary`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the get_binary command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`secure-storage:allow-get-string`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the get_string command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`secure-storage:deny-get-string`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the get_string command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`secure-storage:allow-set-binary`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the set_binary command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`secure-storage:deny-set-binary`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the set_binary command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`secure-storage:allow-set-string`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the set_string command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`secure-storage:deny-set-string`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the set_string command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|