aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation/predicate_builder/base_handler.rb
blob: d50ea519f99406d45f71806b1af653134b6308e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
module ActiveRecord
  class PredicateBuilder
    class BaseHandler # :nodoc:
      def call(attribute, value)
        attribute.eq(value.id)
      end
    end
  end
end