Class: ProductLink

Inherits:
MenuLink
  • Object
show all
Defined in:
app/models/product_link.rb

Instance Method Summary collapse

Instance Method Details

#urlObject



2
3
4
5
6
7
8
# File 'app/models/product_link.rb', line 2

def url
  if product = Product.find(self.target_id)
    product.url
  else
    ''
  end
end