Class: TbCommerce::Product

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/tb_commerce/product.rb

Instance Method Summary collapse

Instance Method Details



25
26
27
28
29
30
31
# File 'app/models/tb_commerce/product.rb', line 25

def featured_image
  self.image_links.each do |image_link|
    if image_link.is_featured
      return image_link.image
    end
  end
end