Module: Mongoid::Relations::Polymorphic::ClassMethods
- Defined in:
- lib/mongoid/relations/polymorphic.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#polymorph(metadata) ⇒ Class
Attempts to set up the information needed to handle a polymorphic relation, if the metadata checks out.
Instance Method Details
#polymorph(metadata) ⇒ Class
Attempts to set up the information needed to handle a polymorphic relation, if the metadata checks out.
27 28 29 30 31 32 33 34 35 36 |
# File 'lib/mongoid/relations/polymorphic.rb', line 27 def polymorph() tap do |klass| if .polymorphic? klass.polymorphic = true if .relation.stores_foreign_key? field(.inverse_type, :type => String) end end end end |