Allow all addons to access /host/info endpoint (#1885)

This commit is contained in:
Greg Rapp 2020-08-10 17:45:05 -04:00 committed by GitHub
parent 19ca485c28
commit f27a426879
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,6 +49,7 @@ ADDONS_API_BYPASS = re.compile(
r"|/services.*"
r"|/discovery.*"
r"|/auth"
r"|/host/info"
r")$"
)