PLT-3658 Added support for Slack attachments in outgoing webhook response (#7774) (#8102)

Этот коммит содержится в:
Joey Lee
2018-01-27 00:37:39 +11:00
коммит произвёл Joram Wilander
родитель 540dd9ae94
Коммит 1c7f25773a
2 изменённых файлов: 20 добавлений и 8 удалений

Просмотреть файл

@@ -46,12 +46,13 @@ type OutgoingWebhookPayload struct {
}
type OutgoingWebhookResponse struct {
Text *string `json:"text"`
Username string `json:"username"`
IconURL string `json:"icon_url"`
Props StringInterface `json:"props"`
Type string `json:"type"`
ResponseType string `json:"response_type"`
Text *string `json:"text"`
Username string `json:"username"`
IconURL string `json:"icon_url"`
Props StringInterface `json:"props"`
Attachments []*SlackAttachment `json:"attachments"`
Type string `json:"type"`
ResponseType string `json:"response_type"`
}
const OUTGOING_HOOK_RESPONSE_TYPE_COMMENT = "comment"