spec/internal/app/models/namespaced/person.rb in global-registry-bindings-0.1.1 vs spec/internal/app/models/namespaced/person.rb in global-registry-bindings-0.1.2
- old
+ new
@@ -25,17 +25,21 @@
id_column: :country_of_service_gr_id,
client_integration_id: ->(model) { "cos_#{model.id}" },
related_association: :country_of_service,
exclude_fields: :exclude_cos_fields,
extra_fields: :extra_cos_fields,
- ensure_relationship_type: false
+ ensure_relationship_type: false,
+ rename_entity_type: false,
+ include_all_columns: false
global_registry_bindings binding: :relationship,
type: :country_of_residence,
id_column: :country_of_residence_gr_id,
client_integration_id: ->(model) { "cor_#{model.id}" },
related_association: :country_of_residence,
- ensure_relationship_type: false
+ ensure_relationship_type: false,
+ rename_entity_type: false,
+ include_all_columns: false
def entity_attributes_to_push
entity_attributes = super
entity_attributes[:authentication] = { key_guid: guid }
entity_attributes