From 07fe2404cc1047038ae0619f7b571d586d06cbdf Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Wed, 5 Jan 2022 10:34:46 +0100 Subject: [PATCH] fix: pass OrgId to alertNotification model (#43678) (#43695) fixes #43214 (cherry picked from commit 837925390f2faec5e29a573395d2e02616decbaf) Co-authored-by: Gilles De Mey --- 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,