From f27a4268795fc3b8e981bdd96a71053dfceacaa1 Mon Sep 17 00:00:00 2001 From: Greg Rapp Date: Mon, 10 Aug 2020 17:45:05 -0400 Subject: [PATCH] Allow all addons to access /host/info endpoint (#1885) --- supervisor/api/security.py | 1 + 1 file changed, 1 insertion(+) diff --git a/supervisor/api/security.py b/supervisor/api/security.py index fcfdded60..1779c3f79 100644 --- a/supervisor/api/security.py +++ b/supervisor/api/security.py @@ -49,6 +49,7 @@ ADDONS_API_BYPASS = re.compile( r"|/services.*" r"|/discovery.*" r"|/auth" + r"|/host/info" r")$" )