From 3a402d86a7087335ceacae9ee6755e8bb5766559 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Wed, 24 Mar 2021 14:36:38 +0100 Subject: [PATCH] Force security options endpoint (#860) --- 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 1526d554..6e755b55 100644 --- a/docs/api/supervisor/endpoints.md +++ b/docs/api/supervisor/endpoints.md @@ -2182,6 +2182,7 @@ Returns information about the supervisor | 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 | +| force_security | bool | If force-security 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 | @@ -2205,6 +2206,7 @@ Returns information about the supervisor "arch": "amd64", "channel": "dev", "content_trust": true, + "force_security": false, "timezone": "TIMEZONE", "healthy": true, "supported": false, @@ -2256,6 +2258,7 @@ You need to call `/supervisor/reload` after updating the options. | 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 | +| force_security | bool | Disable/Enable force-security |