Class: Spree::ProductSummaryPresenter

Inherits:
Object
  • Object
show all
Defined in:
app/presenters/spree/product_summary_presenter.rb

Instance Method Summary collapse

Constructor Details

#initialize(product) ⇒ ProductSummaryPresenter

Returns a new instance of ProductSummaryPresenter.



5
6
7
# File 'app/presenters/spree/product_summary_presenter.rb', line 5

def initialize(product)
  @product = product
end

Instance Method Details

#callObject



9
10
11
12
13
14
# File 'app/presenters/spree/product_summary_presenter.rb', line 9

def call
  {
    name: @product.name,
    images: images
  }
end