Class: Ishapi::ProductsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/ishapi/products_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#exception, #home, #long_term_token, #vote

Instance Method Details

#showObject



8
9
10
11
12
13
14
# File 'app/controllers/ishapi/products_controller.rb', line 8

def show
  @product = Wco::Product.find params[:id]

  puts! @product.prices.to_a, 'to_a'

  authorize! :show, @product
end