vita_app/app/models/product_option.rb
Nicolas Bally 1d3af87d4c initial
2016-04-28 10:07:08 +02:00

14 lines
267 B
Ruby
Executable File

class ProductOption < ActiveRecord::Base
belongs_to :product
has_many :product_option_langs, :dependent => :destroy
accepts_nested_attributes_for :product_option_langs
def lang(lang)
self.product_option_langs.find_by_lang(lang)
end
end