> ## Documentation Index
> Fetch the complete documentation index at: https://snapr.seshuk.im/llms.txt
> Use this file to discover all available pages before exploring further.

# Permissions

> Control what authenticated users can do in the snapr web UI: downloads, manual runs, and config visibility.

`server.permissions` controls what authenticated users can do in the UI.

## Options

| Option                | Type | Required | Default | Description                                          |
| --------------------- | ---- | -------- | ------- | ---------------------------------------------------- |
| `allowBackupDownload` | bool | No       | `true`  | Enable archive download buttons.                     |
| `allowManualRun`      | bool | No       | `true`  | Enable the on-demand "Run now" action for jobs.      |
| `showConfig`          | bool | No       | `true`  | Render the parsed config in the UI (secrets masked). |

## Example

```yaml snapr.yaml theme={null}
server:
  permissions:
    allowBackupDownload: false
    allowManualRun: true
    showConfig: false
```
