Sha256: 06039b45b40d11b01ce73861bbe087b6902b23060bc25a2579a93cddb19983c9

Contents?: true

Size: 1.1 KB

Versions: 4

Compression:

Stored size: 1.1 KB

Contents

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

desc 'UsergroupsUsers methods.'
command 'usergroups_users' do |g|
  g.desc 'List all users in a User Group'
  g.long_desc %( List all users in a User Group )
  g.command 'list' do |c|
    c.flag 'usergroup', desc: 'The encoded ID of the User Group to update.'
    c.flag 'include_disabled', desc: 'Allow results that involve disabled User Groups.'
    c.action do |_global_options, options, _args|
      puts JSON.dump($client.usergroups_users_list(options))
    end
  end

  g.desc 'Update the list of users for a User Group'
  g.long_desc %( Update the list of users for a User Group )
  g.command 'update' do |c|
    c.flag 'usergroup', desc: 'The encoded ID of the User Group to update.'
    c.flag 'users', desc: 'A comma separated string of encoded user IDs that represent the entire list of users for the User Group.'
    c.flag 'include_count', desc: 'Include the number of users in the User Group.'
    c.action do |_global_options, options, _args|
      puts JSON.dump($client.usergroups_users_update(options))
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
slack-ruby-client-0.15.1 bin/commands/usergroups_users.rb
slack-ruby-client-0.15.0 bin/commands/usergroups_users.rb
slack-ruby-client-0.14.6 bin/commands/usergroups_users.rb
slack-ruby-client-0.14.5 bin/commands/usergroups_users.rb