Sha256: 28532698c520064583fa901281333f6962e318526f3764ca1fb98874c41f9e4a
Contents?: true
Size: 868 Bytes
Versions: 1
Compression:
Stored size: 868 Bytes
Contents
# frozen_string_literal: true # This file was auto-generated by lib/tasks/web.rake module Slack module Cli class App desc 'AdminAppsApproved methods.' command 'admin_apps_approved' do |g| g.desc 'List approved apps for an org or workspace.' g.long_desc %( List approved apps for an org or workspace. ) g.command 'list' do |c| c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.' c.flag 'enterprise_id', desc: '.' c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 1000 both inclusive.' c.flag 'team_id', desc: '.' c.action do |_global_options, options, _args| puts JSON.dump(@client.admin_apps_approved_list(options)) end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
slack-ruby-client-2.1.0 | bin/commands/admin_apps_approved.rb |