Class: Superbot::Cloud::CLI::Member::AddCommand

Inherits:
BaseCommand show all
Defined in:
lib/superbot/cloud/cli/member/add_command.rb

Instance Method Summary collapse

Methods inherited from LoginRequiredCommand

#run, run

Methods included from Validations

#require_login

Instance Method Details

#add_memberObject



14
15
16
17
# File 'lib/superbot/cloud/cli/member/add_command.rb', line 14

def add_member
  api_response = Superbot::Cloud::Api.request(:add_member, params: { organization_name: organization, username: username })
  puts "Succesfully added %<username>s to %<organization>s organization" % api_response.slice(:username, :organization)
end

#executeObject



10
11
12
# File 'lib/superbot/cloud/cli/member/add_command.rb', line 10

def execute
  add_member
end