Add content-trust to API (#857)

This commit is contained in:
Pascal Vizeli 2021-03-20 00:13:20 +01:00 committed by GitHub
parent 46e2719d6c
commit 00f9a0b6b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2181,6 +2181,7 @@ Returns information about the supervisor
| version_latest | string | The latest published version in the active channel |
| update_available | boolean | `true` if an update is available |
| arch | string | The architecture of the host (armhf, aarch64, i386, amd64) |
| content_trust | bool | If content-trust is enabled or disabled on the backend |
| channel | string | The active channel (stable, beta, dev) |
| timezone | string | The current timezone |
| healthy | bool | The supervisor is in a healthy state |
@ -2203,6 +2204,7 @@ Returns information about the supervisor
"update_available": true,
"arch": "amd64",
"channel": "dev",
"content_trust": true,
"timezone": "TIMEZONE",
"healthy": true,
"supported": false,
@ -2253,6 +2255,7 @@ You need to call `/supervisor/reload` after updating the options.
| debug_block | bool | Enable debug block |
| logging | string | Set logging level |
| addons_repositories | list | Set a list of URL's as strings for add-on repositories |
| content_trust | bool | Disable/Enable content-trust |
</ApiEndpoint>