2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
module ManualInverseAssociation
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
class_methods do
|
2018-03-17 18:26:18 +05:30
|
|
|
def manual_inverse_association(association, inverse)
|
|
|
|
define_method(association) do |*args|
|
|
|
|
super(*args).tap do |value|
|
|
|
|
next unless value
|
|
|
|
|
|
|
|
child_association = value.association(inverse)
|
|
|
|
child_association.set_inverse_instance(self)
|
|
|
|
child_association.target = self
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|