summaryrefslogtreecommitdiff
path: root/app/models/concerns/manual_inverse_association.rb
blob: 0fca8feaf897bcddecf1440a1b207ae50b4442ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module ManualInverseAssociation
  extend ActiveSupport::Concern

  module ClassMethods
    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