From f36f75b6ec1d02ff5eaa4857424e6c1c3d2e5372 Mon Sep 17 00:00:00 2001 From: Vladimir-A <32281993+Vladimir-A@users.noreply.github.com> Date: Mon, 8 Jun 2026 23:37:04 +0300 Subject: [PATCH] report hooks fix Allows you to request information about reports through fields. --- iris_webhooks_module/IrisWebHooksInterface.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/iris_webhooks_module/IrisWebHooksInterface.py b/iris_webhooks_module/IrisWebHooksInterface.py index 2496f95..689cc96 100644 --- a/iris_webhooks_module/IrisWebHooksInterface.py +++ b/iris_webhooks_module/IrisWebHooksInterface.py @@ -374,6 +374,10 @@ def _do_web_hook(self, hook_name, data, hook, server_url) -> InterfaceStatus.IIS case_id = data[0]['case_id'] file_path = data[0]['file_path'] rfile = data[0]['file'] + raw_data = { + 'reports': [e for e in data], + 'object_url': "" + } except AttributeError as AttrException: self.log.error(str(AttrException)) raise