Skip to content

Commit

Permalink
Merge pull request #114 from intezer/fix/change-label-from-recevied-b…
Browse files Browse the repository at this point in the history
…y-to-reported-by

 fix/change-label-from-recevied-by-to-reported-by - TKT-850
  • Loading branch information
matany90 authored Sep 12, 2023
2 parents 483be82 + d4c5090 commit 1c81b45
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.19
------
- Change "received_by" label to "reported_by" in submit phishing alert.

1.18.9
------
- Add additional info property to send phishing email.
Expand Down
2 changes: 1 addition & 1 deletion intezer_sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.18.9'
__version__ = '1.19'
2 changes: 1 addition & 1 deletion intezer_sdk/alerts.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def send_phishing_email(cls,
file_name=cls._parse_alert_id_from_alert_stream(raw_email),
alert_source='phishing_emails',
environment=environment,
display_fields=','.join(['received_by', 'sender', 'received', 'subject', 'message_id', 'to']),
display_fields=','.join(['reported_by', 'sender', 'received', 'subject', 'message_id', 'to']),
default_verdict=default_verdict,
alert_sender=alert_sender,
additional_info=json.dumps(additional_info) if additional_info else None,
Expand Down

0 comments on commit 1c81b45

Please sign in to comment.