Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix/change-label-from-recevied-by-to-reported-by - TKT-850 #114

Merged
merged 2 commits into from
Sep 12, 2023
Merged
Show file tree
Hide file tree
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 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