Use own slack fork to fix #937 (#943)

This commit is contained in:
Wim
2019-11-14 00:04:39 +01:00
committed by GitHub
parent ed5386c213
commit aba86855b5
7 changed files with 37 additions and 4 deletions

14
vendor/github.com/nlopes/slack/block_unknown.go generated vendored Normal file
View File

@@ -0,0 +1,14 @@
package slack
// UnknownBlock represents a block type that is not yet known. This block type exists to prevent Slack from introducing
// new and unknown block types that break this library.
type UnknownBlock struct {
Type MessageBlockType `json:"type"`
BlockID string `json:"block_id,omitempty"`
Elements BlockElements `json:"elements"`
}
// BlockType returns the type of the block
func (b UnknownBlock) BlockType() MessageBlockType {
return b.Type
}