Home
last modified time | relevance | path

Searched refs:SetAlertNotificationStateToPendingCommand (Results 1 – 6 of 6) sorted by relevance

/dports/www/grafana8/grafana-8.3.6/pkg/services/alerting/
H A Dservice.go34 s.Bus.AddHandlerCtx(s.SetAlertNotificationStateToPendingCommand)
105 …ificationService) SetAlertNotificationStateToPendingCommand(ctx context.Context, cmd *models.SetAl… func
106 return s.SQLStore.SetAlertNotificationStateToPendingCommand(ctx, cmd)
H A Dnotifier.go160 setPendingCmd := &models.SetAlertNotificationStateToPendingCommand{
H A Dnotifier_test.go204 …andlerCtx("test", func(ctx context.Context, cmd *models.SetAlertNotificationStateToPendingCommand)…
/dports/www/grafana8/grafana-8.3.6/pkg/services/sqlstore/
H A Dalert_notification_test.go63 cmd := models.SetAlertNotificationStateToPendingCommand{
69 err := sqlStore.SetAlertNotificationStateToPendingCommand(context.Background(), &cmd)
119 cmd := models.SetAlertNotificationStateToPendingCommand{
124 err := sqlStore.SetAlertNotificationStateToPendingCommand(context.Background(), &cmd)
130 cmd := models.SetAlertNotificationStateToPendingCommand{
135 err := sqlStore.SetAlertNotificationStateToPendingCommand(context.Background(), &cmd)
144 cmd := models.SetAlertNotificationStateToPendingCommand{
149 err := sqlStore.SetAlertNotificationStateToPendingCommand(context.Background(), &cmd)
H A Dalert_notification.go495 …nc (ss *SQLStore) SetAlertNotificationStateToPendingCommand(ctx context.Context, cmd *models.SetAl… func
/dports/www/grafana8/grafana-8.3.6/pkg/models/
H A Dalert_notifications.go152 type SetAlertNotificationStateToPendingCommand struct { struct