Sha256: fbf6fb2ed1e60c2f04369654e951a3bf4519b31be85985a798ed150110197548
Contents?: true
Size: 951 Bytes
Versions: 2
Compression:
Stored size: 951 Bytes
Contents
# This file was auto-generated by lib/tasks/web.rake module Slack module Web module Api module Endpoints module Apps # # Uninstalls your app from a workspace. # # @option options [Object] :client_id # Issued when you created your application. # @option options [Object] :client_secret # Issued when you created your application. # @see https://api.slack.com/methods/apps.uninstall # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/apps/apps.uninstall.json def apps_uninstall(options = {}) throw ArgumentError.new('Required arguments :client_id missing') if options[:client_id].nil? throw ArgumentError.new('Required arguments :client_secret missing') if options[:client_secret].nil? post('apps.uninstall', options) end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
slack-ruby-client-0.14.1 | lib/slack/web/api/endpoints/apps.rb |
slack-ruby-client-0.14.0 | lib/slack/web/api/endpoints/apps.rb |