Sha256: 61c99f48f17447831198bffd41a695a8aa37b736306a56436da3358aada0ec2b
Contents?: true
Size: 802 Bytes
Versions: 24
Compression:
Stored size: 802 Bytes
Contents
module MongoMapper module Plugins module Associations class ManyEmbeddedPolymorphicProxy < EmbeddedCollection def replace(values) @_values = values.map do |v| v.respond_to?(:attributes) ? v.attributes.merge(reflection.type_key_name => v.class.name) : v end reset end protected def find_target (@_values || []).map do |hash| child = polymorphic_class(hash).load(hash) assign_root_document(child) child end end def polymorphic_class(doc) if class_name = doc[reflection.type_key_name] class_name.constantize else klass end end end end end end
Version data entries
24 entries across 24 versions & 3 rubygems