From a848776a34a33d46a4c98333a7e3fb0689fb7a66 Mon Sep 17 00:00:00 2001 From: TwiN Date: Sun, 16 Jan 2022 00:07:19 -0500 Subject: [PATCH] refactor(alerting): Sort alert types alphabetically --- alerting/alert/type.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/alerting/alert/type.go b/alerting/alert/type.go index 400d89f4..ac01856f 100644 --- a/alerting/alert/type.go +++ b/alerting/alert/type.go @@ -8,15 +8,15 @@ const ( // TypeCustom is the Type for the custom alerting provider TypeCustom Type = "custom" - // TypeGoogleChat is the Type for the Google chat alerting provider - TypeGoogleChat Type = "googlechat" - // TypeDiscord is the Type for the discord alerting provider TypeDiscord Type = "discord" // TypeEmail is the Type for the email alerting provider TypeEmail Type = "email" + // TypeGoogleChat is the Type for the googlechat alerting provider + TypeGoogleChat Type = "googlechat" + // TypeMattermost is the Type for the mattermost alerting provider TypeMattermost Type = "mattermost"