From f12b2d744a506f608a1f44244b82b4bb529bbe35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1chym=20Hole=C4=8Dek?= <88273448+joachim162@users.noreply.github.com> Date: Mon, 30 Jun 2025 10:47:56 +0200 Subject: [PATCH] Add is_acknowledged property to Node class (#461) This pull request introduces an `is_acknowledged` property to the `Node` class in the Business Process library to enhance JSON output. --- library/Businessprocess/Node.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/library/Businessprocess/Node.php b/library/Businessprocess/Node.php index 30bfcb5..78a3459 100644 --- a/library/Businessprocess/Node.php +++ b/library/Businessprocess/Node.php @@ -547,7 +547,8 @@ abstract class Node 'name' => $this->getAlias(), 'state' => $this->getStateName(), 'since' => $this->getLastStateChange(), - 'in_downtime' => $this->isInDowntime() ? true : false + 'in_downtime' => $this->isInDowntime() ? true : false, + 'in_acknowledged' => $this->isAcknowledged() ? true : false ]; if ($parent !== null) {