Class: Formed::Associations::Builder::CollectionAssociation
- Inherits:
-
Association
- Object
- Association
- Formed::Associations::Builder::CollectionAssociation
- Defined in:
- lib/formed/associations/builder/collection_association.rb
Overview
:nodoc:
Direct Known Subclasses
Constant Summary collapse
- CALLBACKS =
i[before_add after_add before_remove after_remove].freeze
Constants inherited from Association
Class Method Summary collapse
Methods inherited from Association
Class Method Details
.define_callbacks(model, reflection) ⇒ Object
13 14 15 16 17 18 19 20 |
# File 'lib/formed/associations/builder/collection_association.rb', line 13 def self.define_callbacks(model, reflection) super name = reflection.name = reflection. CALLBACKS.each do |callback_name| define_callback(model, callback_name, name, ) end end |