mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-29 12:06:01 +02:00
76daee7aaf
* fix(deps): update tauri monorepo * Create tauri-beta-23.md * fix clippy - regen permissions * revert accidental cargo.toml change --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de>
76 lines
825 B
Markdown
76 lines
825 B
Markdown
## Default Permission
|
|
|
|
This permission set configures which
|
|
process feeatures are by default exposed.
|
|
|
|
#### Granted Permissions
|
|
|
|
This enables to quit via `allow-exit` and restart via `allow-restart`
|
|
the application.
|
|
|
|
|
|
- `allow-exit`
|
|
- `allow-restart`
|
|
|
|
### Permission Table
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Identifier</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`process:allow-exit`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the exit command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`process:deny-exit`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the exit command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`process:allow-restart`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the restart command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`process:deny-restart`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the restart command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|