summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/nlopes/slack/oauth.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2017-01-28 00:36:22 +0100
committerWim <wim@42.be>2017-01-28 00:36:22 +0100
commit482fbac68fde1674577f2ef722773de64416e2d8 (patch)
tree3b87950a74b4c3f0413b275ca151ad49a2e950f8 /vendor/github.com/nlopes/slack/oauth.go
parentdcccd434276c0e7e263e7567af63d6afd2712507 (diff)
downloadmatterbridge-msglm-482fbac68fde1674577f2ef722773de64416e2d8.tar.gz
matterbridge-msglm-482fbac68fde1674577f2ef722773de64416e2d8.tar.bz2
matterbridge-msglm-482fbac68fde1674577f2ef722773de64416e2d8.zip
Update vendor (slack)
Diffstat (limited to 'vendor/github.com/nlopes/slack/oauth.go')
-rw-r--r--vendor/github.com/nlopes/slack/oauth.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/github.com/nlopes/slack/oauth.go b/vendor/github.com/nlopes/slack/oauth.go
index 33c3ed2d..1285abbd 100644
--- a/vendor/github.com/nlopes/slack/oauth.go
+++ b/vendor/github.com/nlopes/slack/oauth.go
@@ -8,6 +8,7 @@ import (
type OAuthResponseIncomingWebhook struct {
URL string `json:"url"`
Channel string `json:"channel"`
+ ChannelID string `json:"channel_id,omitempty"`
ConfigurationURL string `json:"configuration_url"`
}
@@ -23,6 +24,7 @@ type OAuthResponse struct {
TeamID string `json:"team_id"`
IncomingWebhook OAuthResponseIncomingWebhook `json:"incoming_webhook"`
Bot OAuthResponseBot `json:"bot"`
+ UserID string `json:"user_id,omitempty"`
SlackResponse
}