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