cirandas.net

ref: master

plugins/exchange/lib/ext/products_plugin/product.rb


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
require_dependency 'products_plugin/product'

module ProductsPlugin
  class Product

    has_many :elements, -> {
      where object_type: 'Product'
    }, foreign_key: :object_id, class_name: 'ExchangePlugin::Element', dependent: :destroy

  end
end