This is an automated email from the ASF dual-hosted git repository. tenthe pushed a commit to branch 4687-kiosk-mode-does-not-show-data-for-logged-out-users in repository https://gitbox.apache.org/repos/asf/streampipes.git
commit 8889eaca4bdada3b9751f6e2b40973ce10406b9a Author: Philipp Zehnder <[email protected]> AuthorDate: Mon Jul 6 14:08:51 2026 +0000 fix: Fix anonymous access to kiosk mode dashboards --- .../org/apache/streampipes/service/core/UnauthenticatedInterfaces.java | 1 + 1 file changed, 1 insertion(+) diff --git a/streampipes-service-core/src/main/java/org/apache/streampipes/service/core/UnauthenticatedInterfaces.java b/streampipes-service-core/src/main/java/org/apache/streampipes/service/core/UnauthenticatedInterfaces.java index 774de0c1ea..9c10b17cb1 100644 --- a/streampipes-service-core/src/main/java/org/apache/streampipes/service/core/UnauthenticatedInterfaces.java +++ b/streampipes-service-core/src/main/java/org/apache/streampipes/service/core/UnauthenticatedInterfaces.java @@ -47,6 +47,7 @@ public class UnauthenticatedInterfaces { "/streampipes-backend/index.html", // anonymous dashboard access is allowed "/api/v3/datalake/dashboard/*/composite", + "/api/v3/datalake/dashboard/kiosk/*/data", "/api/v3/datalake/dashboard/kiosk/*/*/data" ); }
