Skip to content

Commit

Permalink
feat(providers): improve squadcast provider capabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
pehlicd committed Jun 20, 2024
1 parent bab1054 commit 0ecb7ef
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions keep/providers/squadcast_provider/squadcast_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ def _create_incidents(
headers: dict,
message: str,
description: str,
tags: dict = {},
priority: str = "",
status: str = "",
event_id: str = "",
Expand All @@ -123,6 +124,7 @@ def _create_incidents(
{
"message": message,
"description": description,
"tags": tags,
"priority": priority,
"status": status,
"event_id": event_id,
Expand Down Expand Up @@ -153,6 +155,7 @@ def _notify(
description: str = "",
incident_id: str = "",
priority: str = "",
tags: dict = {},
status: str = "",
event_id: str = "",
attachments: list = [],
Expand Down Expand Up @@ -187,6 +190,7 @@ def _notify(
headers=headers,
message=message,
description=description,
tags=tags,
priority=priority,
status=status,
event_id=event_id,
Expand Down

0 comments on commit 0ecb7ef

Please sign in to comment.