app/decorators/product_decorator.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ProductDecorator < Draper::Decorator
  delegate_all

  def title_link
    h.link_to title, self
  end
end