Sha256: a5daace8b8a42ccaed7055536ae13ca9e50764d2d58273ef3914ba19b0fd7d7b
Contents?: true
Size: 965 Bytes
Versions: 2
Compression:
Stored size: 965 Bytes
Contents
# This file was auto-generated by lib/tasks/web.rake module Slack module Web module Api module Endpoints module Auth # # Revokes a token. # # @option options [Object] :test # Setting this parameter to 1 triggers a testing mode where the specified token will not actually be revoked. # @see https://api.slack.com/methods/auth.revoke # @see https://github.com/dblock/slack-api-ref/blob/master/methods/auth/auth.revoke.json def auth_revoke(options = {}) post('auth.revoke', options) end # # Checks authentication & identity. # # @see https://api.slack.com/methods/auth.test # @see https://github.com/dblock/slack-api-ref/blob/master/methods/auth/auth.test.json def auth_test(options = {}) post('auth.test', options) end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
slack-ruby-client-0.10.0 | lib/slack/web/api/endpoints/auth.rb |
slack-ruby-client-0.9.1 | lib/slack/web/api/endpoints/auth.rb |