Sha256: a7ae85d5f412a595114ac78daf612278629ab9f9640efb4bda448a9ff2badede
Contents?: true
Size: 433 Bytes
Versions: 6
Compression:
Stored size: 433 Bytes
Contents
# frozen_string_literal: true class Address < ApplicationRecord belongs_to :person, class_name: 'Namespaced::Person', inverse_of: :addresses global_registry_bindings parent_association: :person, exclude_fields: %i[address1], extra_fields: { line1: :string, line2: :string, postal_code: :string } alias_attribute :line1, :address1 alias_attribute :postal_code, :zip end
Version data entries
6 entries across 6 versions & 1 rubygems