aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/preloader/has_one_through.rb
blob: 512ca8200572c5d7178c31774cdfa93e0ad8c315 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true
module ActiveRecord
  module Associations
    class Preloader
      class HasOneThrough < SingularAssociation #:nodoc:
        include ThroughAssociation
      end
    end
  end
end