From e5a94979ddbffa02a76fc74a626858aa4a34b6ea Mon Sep 17 00:00:00 2001 From: David Wheatley Date: Sat, 15 Oct 2022 22:56:38 +0100 Subject: [PATCH] fix: add Google Chat to list of alert types when determining valid providers (#341) --- config/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/config/config.go b/config/config.go index 3dc1078a..65820958 100644 --- a/config/config.go +++ b/config/config.go @@ -302,6 +302,7 @@ func validateAlertingConfig(alertingConfig *alerting.Config, endpoints []*core.E alertTypes := []alert.Type{ alert.TypeCustom, alert.TypeDiscord, + alert.TypeGoogleChat, alert.TypeEmail, alert.TypeMatrix, alert.TypeMattermost,