diff options
Diffstat (limited to 'vendor/github.com/nlopes/slack/oauth.go')
-rw-r--r-- | vendor/github.com/nlopes/slack/oauth.go | 2 |
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 } |