Browse Source

slack JSON indent

tags/v1.21.12.1
Unknwon 10 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 View File

@@ -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
}


Loading…
Cancel
Save