Sha256: d2c7fe0e351ac240bf2217de1c61b33feab18be31cf43710c1b5b0c98a4363f4
Contents?: true
Size: 637 Bytes
Versions: 40
Compression:
Stored size: 637 Bytes
Contents
module Brightbox desc I18n.t("accounts.desc") command [:accounts] do |cmd| cmd.desc I18n.t("accounts.accept_invite.desc") cmd.arg_name "account_id" cmd.command [:accept_invite] 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.accept 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