Sha256: d579b69fd2f7335174cfb147352e1c19c3763ece4c8118f02be617dcd8ccfb4c

Contents?: true

Size: 668 Bytes

Versions: 4

Compression:

Stored size: 668 Bytes

Contents

# frozen_string_literal: true
# This file was auto-generated by lib/tasks/web.rake

module Slack
  module Cli
    class App
      desc 'Apps methods.'
      command 'apps' do |g|
        g.desc 'Uninstalls your app from a workspace.'
        g.long_desc %( Uninstalls your app from a workspace. )
        g.command 'uninstall' do |c|
          c.flag 'client_id', desc: 'Issued when you created your application.'
          c.flag 'client_secret', desc: 'Issued when you created your application.'
          c.action do |_global_options, options, _args|
            puts JSON.dump(@client.apps_uninstall(options))
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
slack-ruby-client-2.4.0 bin/commands/apps.rb
slack-ruby-client-2.3.0 bin/commands/apps.rb
slack-ruby-client-2.2.0 bin/commands/apps.rb
slack-ruby-client-2.1.0 bin/commands/apps.rb