blob: 37186903ffc76d0767ceb9149e80a3226fe7f484 (
plain) (
tree)
|
|
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
|