Commit 20292bdb by Alvaro Olmedo Rodriguez Committed by GitHub

Alerting: Ensuring notifications displayed correctly in mobile device with Google Chat (#27578)

* Added previewText to Google Chat notifier
parent 7e96b1f3
...@@ -58,6 +58,7 @@ Structs used to build a custom Google Hangouts Chat message card. ...@@ -58,6 +58,7 @@ Structs used to build a custom Google Hangouts Chat message card.
See: https://developers.google.com/hangouts/chat/reference/message-formats/cards See: https://developers.google.com/hangouts/chat/reference/message-formats/cards
*/ */
type outerStruct struct { type outerStruct struct {
PreviewText string `json:"previewText"`
FallbackText string `json:"fallbackText"` FallbackText string `json:"fallbackText"`
Cards []card `json:"cards"` Cards []card `json:"cards"`
} }
...@@ -195,6 +196,7 @@ func (gcn *GoogleChatNotifier) Notify(evalContext *alerting.EvalContext) error { ...@@ -195,6 +196,7 @@ func (gcn *GoogleChatNotifier) Notify(evalContext *alerting.EvalContext) error {
// nest the required structs // nest the required structs
res1D := &outerStruct{ res1D := &outerStruct{
PreviewText: evalContext.GetNotificationTitle(),
FallbackText: evalContext.GetNotificationTitle(), FallbackText: evalContext.GetNotificationTitle(),
Cards: []card{ Cards: []card{
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment