Method: ProductsController#by_permalink

Defined in:
app/controllers/products_controller.rb


27
28
29
30
31
32
33
# File 'app/controllers/products_controller.rb', line 27

def by_permalink
  if @product = Product.find_by_permalink(params['path'])
    render :template => 'products/show'
  else
    render :template => 'public/404.html', :status => '404'
  end
end