Sha256: fe754483d5042cda0a45621a89b6c140de08668e66740f92ff5d261667a3e885

Contents?: true

Size: 592 Bytes

Versions: 40

Compression:

Stored size: 592 Bytes

Contents

module Brightbox
  command [:accounts] do |cmd|

    cmd.desc I18n.t("accounts.remove.desc")
    cmd.arg_name "account_id"
    cmd.command [:remove] do |c|
      c.action do |global_options, _options, args|
        account_id = args.first

        # Find the collaboration for that account
        collaboration = UserCollaboration.get_for_account(account_id)
        if collaboration
          collaboration.remove
        else
          raise "Couldn't find an invite for account #{account_id}"
        end

        render_table([collaboration], global_options)
      end
    end
  end
end

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
brightbox-cli-3.3.0 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-3.2.0 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-3.1.0 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-3.0.1 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-3.0.0 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-2.12.0 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-2.11.2 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-2.11.1 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-2.11.0 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-2.10.0 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-2.9.3 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-2.9.2 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-2.9.1 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-2.9.0 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-2.8.2 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-2.8.1 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-2.8.0 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-2.7.1 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-2.7.0 lib/brightbox-cli/commands/accounts/remove.rb
brightbox-cli-2.6.0 lib/brightbox-cli/commands/accounts/remove.rb