Class: Mongoid::Relations::Bindings::Referenced::One
- Inherits:
-
Mongoid::Relations::Binding
- Object
- Mongoid::Relations::Binding
- Mongoid::Relations::Bindings::Referenced::One
- Defined in:
- lib/mongoid/relations/bindings/referenced/one.rb
Overview
Binding class for references_one relations.
Instance Attribute Summary
Attributes inherited from Mongoid::Relations::Binding
Instance Method Summary collapse
-
#bind ⇒ Object
(also: #bind_one)
Binds the base object to the inverse of the relation.
-
#unbind ⇒ Object
(also: #unbind_one)
Unbinds the base object and the inverse, caused by setting the reference to nil.
Methods inherited from Mongoid::Relations::Binding
Constructor Details
This class inherits a constructor from Mongoid::Relations::Binding
Instance Method Details
#bind ⇒ Object Also known as: bind_one
Binds the base object to the inverse of the relation. This is so we are referenced to the actual objects themselves on both sides.
This case sets the metadata on the inverse object as well as the document itself.
21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/mongoid/relations/bindings/referenced/one.rb', line 21 def bind unless _binding? _binding do target.you_must(.foreign_key_setter, base.id) target.send(.inverse_setter, base) if .type target.you_must(.type_setter, base.class.model_name) end end end end |
#unbind ⇒ Object Also known as: unbind_one
Unbinds the base object and the inverse, caused by setting the reference to nil.
42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/mongoid/relations/bindings/referenced/one.rb', line 42 def unbind unless _binding? _binding do target.you_must(.foreign_key_setter, nil) target.send(.inverse_setter, nil) if .type target.you_must(.type_setter, nil) end end end end |