Class: Superbot::Cloud::CLI::Member::RemoveCommand
- Inherits:
-
BaseCommand
- Object
- Clamp::Command
- LoginRequiredCommand
- OrganizationBasedCommand
- BaseCommand
- Superbot::Cloud::CLI::Member::RemoveCommand
- Defined in:
- lib/superbot/cloud/cli/member/remove_command.rb
Instance Method Summary collapse
Methods inherited from LoginRequiredCommand
Methods included from Validations
Instance Method Details
#execute ⇒ Object
10 11 12 |
# File 'lib/superbot/cloud/cli/member/remove_command.rb', line 10 def execute remove_member end |
#remove_member ⇒ Object
14 15 16 17 |
# File 'lib/superbot/cloud/cli/member/remove_command.rb', line 14 def remove_member api_response = Superbot::Cloud::Api.request(:remove_member, params: { organization_name: organization, username: username }) puts "Member successfully removed from organization" end |