mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-29 12:06:01 +02:00
f209b2f23c
* 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>
454 lines
5.1 KiB
Markdown
454 lines
5.1 KiB
Markdown
## Default Permission
|
|
|
|
This permission set configures which
|
|
notification features are by default exposed.
|
|
|
|
#### Granted Permissions
|
|
|
|
It allows all notification related features.
|
|
|
|
#### This default permission set includes the following:
|
|
|
|
- `allow-is-permission-granted`
|
|
- `allow-request-permission`
|
|
- `allow-notify`
|
|
- `allow-register-action-types`
|
|
- `allow-register-listener`
|
|
- `allow-cancel`
|
|
- `allow-get-pending`
|
|
- `allow-remove-active`
|
|
- `allow-get-active`
|
|
- `allow-check-permissions`
|
|
- `allow-show`
|
|
- `allow-batch`
|
|
- `allow-list-channels`
|
|
- `allow-delete-channel`
|
|
- `allow-create-channel`
|
|
- `allow-permission-state`
|
|
|
|
## Permission Table
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Identifier</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:allow-batch`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the batch command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:deny-batch`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the batch command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:allow-cancel`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the cancel command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:deny-cancel`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the cancel command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:allow-check-permissions`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the check_permissions command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:deny-check-permissions`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the check_permissions command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:allow-create-channel`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the create_channel command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:deny-create-channel`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the create_channel command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:allow-delete-channel`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the delete_channel command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:deny-delete-channel`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the delete_channel command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:allow-get-active`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the get_active command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:deny-get-active`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the get_active command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:allow-get-pending`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the get_pending command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:deny-get-pending`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the get_pending command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:allow-is-permission-granted`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the is_permission_granted command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:deny-is-permission-granted`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the is_permission_granted command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:allow-list-channels`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the list_channels command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:deny-list-channels`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the list_channels command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:allow-notify`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the notify command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:deny-notify`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the notify command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:allow-permission-state`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the permission_state command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:deny-permission-state`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the permission_state command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:allow-register-action-types`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the register_action_types command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:deny-register-action-types`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the register_action_types command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:allow-register-listener`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the register_listener command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:deny-register-listener`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the register_listener command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:allow-remove-active`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the remove_active command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:deny-remove-active`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the remove_active command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:allow-request-permission`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the request_permission command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:deny-request-permission`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the request_permission command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:allow-show`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the show command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`notification:deny-show`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the show command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|