This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

feat(messages): make actions and image not required

+2 -2
+2 -2
events.go
··· 35 35 Label string `json:"label"` 36 36 // URL to go to when the action button is clicked 37 37 Action string `json:"action"` 38 - } `json:"actions"` 38 + } `json:"actions,omitempty"` 39 39 // URL to an image to display in the notification 40 - Image string `json:"image"` 40 + Image string `json:"image,omitempty"` 41 41 }