Browse Source

slack JSON indent

Unknwon 9 years ago
parent
commit
8e92d4352f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      models/webhook_slack.go

+ 1 - 1
models/webhook_slack.go

@@ -42,7 +42,7 @@ type SlackAttachment struct {
 func (p *SlackPayload) SetSecret(_ string) {}
 
 func (p *SlackPayload) JSONPayload() ([]byte, error) {
-	data, err := json.Marshal(p)
+	data, err := json.MarshalIndent(p, "", "  ")
 	if err != nil {
 		return []byte{}, err
 	}