Skip to content

Commit

Permalink
Altered 4 rules to return dict, not PantherEvent (#873)
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-githubs authored Sep 11, 2023
1 parent 000f54d commit 8dbd8fa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion rules/dropbox_rules/dropbox_many_deletes.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ def title(event):


def alert_context(event):
return event
return event.to_dict()
2 changes: 1 addition & 1 deletion rules/dropbox_rules/dropbox_many_downloads.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ def title(event):


def alert_context(event):
return event
return event.to_dict()
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ def title(event):


def alert_context(event):
return event
return event.to_dict()
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ def title(event):


def alert_context(event):
return event
return event.to_dict()

0 comments on commit 8dbd8fa

Please sign in to comment.