From 00f9a0b6b1102b37e969429d7d4e8fc4bb53b0f5 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sat, 20 Mar 2021 00:13:20 +0100 Subject: [PATCH] Add content-trust to API (#857) --- docs/api/supervisor/endpoints.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/api/supervisor/endpoints.md b/docs/api/supervisor/endpoints.md index c13f7e0a..1526d554 100644 --- a/docs/api/supervisor/endpoints.md +++ b/docs/api/supervisor/endpoints.md @@ -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 |