Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions iris_webhooks_module/IrisWebHooksInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down