Class: Eco::API::UseCases::Default::People::SetDefaultTagCase

Inherits:
Common::Loaders::UseCase show all
Defined in:
lib/eco/api/usecases/default/people/set_default_tag_case.rb

Instance Attribute Summary

Attributes included from Language::AuxiliarLogger

#logger

Instance Method Summary collapse

Methods inherited from Common::Loaders::UseCase

cli, cli!, #cli_apply!, #initialize, type, #type

Methods inherited from Common::Loaders::CaseBase

#name, name_only_once!

Methods inherited from Common::Loaders::Base

<=>, created_at, #initialize, set_created_at!

Methods included from Common::ClassHelpers

#class_resolver, #descendants, #descendants?, #inheritable_attrs, #inheritable_class_vars, #inherited, #instance_variable_name, #new_class, #resolve_class, #to_constant

Methods included from Language::AuxiliarLogger

#log

Constructor Details

This class inherits a constructor from Eco::API::Common::Loaders::UseCase

Instance Method Details

#main(_people, session, options, usecase) ⇒ Object

take the deepest tag (the one that is further down in the tree) different options (several nodes at the same depth): => take the common node between them (i.e. you have Hamilton and Auckland -> take New Zealand) => if there's no common node between them, take the first (unless they are at top level of the tree)



9
10
11
12
13
14
15
16
17
18
# File 'lib/eco/api/usecases/default/people/set_default_tag_case.rb', line 9

def main(_people, session, options, usecase)
  tagtree_present!
  users  = users_present!
  update = session.new_job("main", "update", :update, usecase, :account)

  users.each do |person|
    micro.refresh_default_tag(nil, person, options)
    update.add(person)
  end
end