Flowdock
method

add_touch_callbacks

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: BelongsTo
add_touch_callbacks(model, reflection) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/associations/builder/belongs_to.rb, line 97
    def self.add_touch_callbacks(model, reflection)
      foreign_key = reflection.foreign_key
      n           = reflection.name
      touch       = reflection.options[:touch]

      callback = lambda { |record|
        BelongsTo.touch_record(record, foreign_key, n, touch)
      }

      model.after_save    callback, if: :changed?
      model.after_touch   callback
      model.after_destroy callback
    end

    def self.add_destroy_callbacks(model, reflection)
      name = reflection.name
      model.after_destroy lambda { |o| o.association(name).handle_dependency }
    end
  end
Register or log in to add new notes.