2023-04-20 10:13:48 -06:00
|
|
|
from apps.alerts.signals import alert_group_action_triggered_signal, alert_group_escalation_snapshot_built
|
2023-03-13 18:19:22 -03:00
|
|
|
|
2023-04-20 10:13:48 -06:00
|
|
|
from .listeners import on_action_triggered, on_alert_group_created
|
2023-03-13 18:19:22 -03:00
|
|
|
|
2023-04-20 10:13:48 -06:00
|
|
|
alert_group_escalation_snapshot_built.connect(on_alert_group_created)
|
2023-03-13 18:19:22 -03:00
|
|
|
alert_group_action_triggered_signal.connect(on_action_triggered)
|