Skip to content

Commit

Permalink
Remove description.
Browse files Browse the repository at this point in the history
  • Loading branch information
dcondomitti committed Jul 16, 2015
1 parent 1e4267a commit a8e508c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions slack_payload.go
Expand Up @@ -22,7 +22,6 @@ type slackMessage struct {
Fallback string `json:"fallback"`
Title string `json:"title"`
TitleLink string `json:"title_link"`
Text string `json:"text"`
Fields []slackMessageField `json:"fields"`
}

Expand All @@ -46,8 +45,7 @@ func extractAttachments(s *pivotal.Story) []slackMessage {
Fallback: s.Name,
Title: s.Name,
TitleLink: s.URL,
Fields: extractFields(s),
Text: s.Description,
Fields: extractFields(s)
},
}
}
Expand Down

0 comments on commit a8e508c

Please sign in to comment.