From 837925390f2faec5e29a573395d2e02616decbaf Mon Sep 17 00:00:00 2001 From: Gilles De Mey Date: Wed, 5 Jan 2022 10:19:45 +0100 Subject: [PATCH] fix: pass OrgId to alertNotification model (#43678) fixes #43214 --- pkg/services/alerting/test_notification.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/services/alerting/test_notification.go b/pkg/services/alerting/test_notification.go index 01bc3cb087c..c4a45f31075 100644 --- a/pkg/services/alerting/test_notification.go +++ b/pkg/services/alerting/test_notification.go @@ -33,6 +33,7 @@ func (s *AlertNotificationService) HandleNotificationTestCommand(ctx context.Con model := models.AlertNotification{ Id: cmd.ID, + OrgId: cmd.OrgID, Name: cmd.Name, Type: cmd.Type, Settings: cmd.Settings,