Sha256: 2818895cd8fa13a23e24fea8545a4746f3672b1a6db61d0858fbeadb29076a40
Contents?: true
Size: 796 Bytes
Versions: 29
Compression:
Stored size: 796 Bytes
Contents
module Eco module API class MicroCases # @param entry [PersonEntry] the input entry with the data we should set on person. # @param person [Ecoportal::API::V1::Person] the person we want to update, carrying the changes to be done. # @param options [Hash] the options. def set_account(entry, person, options) unless options.dig(:exclude, :account) entry.set_account(person, exclude: micro.account_excluded(person, options)) person.account.send_invites = options[:send_invites] if options.key?(:send_invites) micro.refresh_default_tag(entry, person, options) micro.fix_default_group(entry, person, options) micro.refresh_abilities(person, options) end end end end end
Version data entries
29 entries across 29 versions & 1 rubygems