mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
dc3230b156
If the through class has default scopes we should skip the statement cache. Closes #20745.
14 lines
245 B
Ruby
14 lines
245 B
Ruby
class CustomerCarrier < ActiveRecord::Base
|
|
cattr_accessor :current_customer
|
|
|
|
belongs_to :customer
|
|
belongs_to :carrier
|
|
|
|
default_scope -> {
|
|
if current_customer
|
|
where(customer: current_customer)
|
|
else
|
|
all
|
|
end
|
|
}
|
|
end
|