Class: Eco::API::Common::People::DefaultParsers::SendInvitesParser

Inherits:
Loaders::Parser show all
Defined in:
lib/eco/api/common/people/default_parsers/send_invites_parser.rb

Instance Attribute Summary

Attributes included from Language::AuxiliarLogger

#logger

Instance Method Summary collapse

Methods inherited from Loaders::Parser

active_when_all, active_when_any, #attribute, attribute, dependencies, #initialize, parsing_phase, serializing_phase

Methods inherited from Loaders::CaseBase

#name, name_only_once!, original_name

Methods inherited from Loaders::Base

<=>, created_at, #initialize, set_created_at!

Methods included from Language::Klass::InheritableClassVars

#inheritable_attrs, #inheritable_class_vars, #inherited

Methods included from Language::Klass::Naming

#instance_variable_name, #to_constant

Methods included from Language::Klass::Hierarchy

#descendants, #descendants?

Methods included from Language::Klass::Builder

#new_class

Methods included from Language::Klass::Uid

#uid

Methods included from Language::Klass::Resolver

#class_resolver, #resolve_class

Methods included from Language::Klass::Const

#if_const, #redef_without_warning

Methods included from Language::AuxiliarLogger

#log

Constructor Details

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

Instance Method Details

#parser(hash, _deps) ⇒ Object



4
5
6
7
8
# File 'lib/eco/api/common/people/default_parsers/send_invites_parser.rb', line 4

def parser(hash, _deps)
  value = hash['send_invites']
  value = value.first if value.is_a?(Array)
  truthy?(value)
end

#serializer(person, _deps) ⇒ Object



10
11
12
13
14
# File 'lib/eco/api/common/people/default_parsers/send_invites_parser.rb', line 10

def serializer(person, _deps)
  return unless ( = person.)

  .send_invites&.to_s
end