Class: Eco::API::UseCases::DefaultCases::SetDefaultTagCase

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

Instance Method Summary collapse

Methods inherited from Common::Loaders::UseCase

#initialize, type, #type

Methods inherited from Common::Loaders::CaseBase

#name, name_only_once!

Methods inherited from Common::Loaders::Base

<=>, created_at, #initialize, #name, 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

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
19
# File 'lib/eco/api/usecases/default_cases/set_default_tag_case.rb', line 9

def main(people, session, options, usecase)
  micro    = session.micro
  tagtree_present!(session)
  users    = users_present!(people, session)
  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