method
add_cached_associations
v7.2.3 -
Show latest stable
- Class:
ActiveRecord::MessagePack::Encoder
add_cached_associations(record, entry)public
No documentation available.
# File activerecord/lib/active_record/message_pack.rb, line 81
def add_cached_associations(record, entry)
record.class.normalized_reflections.each_value do |reflection|
if record.association_cached?(reflection.name) && record.association(reflection.name).loaded?
entry << reflection.name << encode(record.association(reflection.name).target)
end
end
end