Remove unused presenter

The usage of this presenter got removed seven years ago:
c5d031a6d7
This commit is contained in:
Maikel Linke
2020-01-07 17:30:42 +11:00
parent 6cfb060184
commit 3204d0b37c

View File

@@ -1,13 +0,0 @@
class VariantPresenter
attr_accessor :variant
def initialize(variant)
@variant = variant
end
delegate :id, to: :variant
def image_url
@variant.images.first.attachment.url :mini if @variant.images.present?
end
end