Sha256: b8bd03e457115418113dbc5bca93c0dc5dddc340ce44562a6fa8dbf4d0207499

Contents?: true

Size: 553 Bytes

Versions: 28

Compression:

Stored size: 553 Bytes

Contents

module Brightbox
  command [:accounts] do |cmd|

    cmd.default_command :list

    cmd.desc I18n.t("accounts.list.desc")
    cmd.arg_name "[account-id...]"
    cmd.command [:list] do |c|

      c.action do |global_options, _options, _args|
        if Brightbox.config.using_application?
          # Collaborating Accounts are combined from owned and collaborations
          accounts = CollaboratingAccount.all
        else
          accounts = Account.find(:all)
        end

        render_table(accounts, global_options)
      end
    end
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
brightbox-cli-2.5.0 lib/brightbox-cli/commands/accounts/list.rb
brightbox-cli-2.4.1 lib/brightbox-cli/commands/accounts/list.rb
brightbox-cli-2.4.0 lib/brightbox-cli/commands/accounts/list.rb
brightbox-cli-2.3.4 lib/brightbox-cli/commands/accounts/list.rb
brightbox-cli-2.3.3 lib/brightbox-cli/commands/accounts/list.rb
brightbox-cli-2.3.2 lib/brightbox-cli/commands/accounts/list.rb
brightbox-cli-2.3.1 lib/brightbox-cli/commands/accounts/list.rb
brightbox-cli-2.3.0 lib/brightbox-cli/commands/accounts/list.rb