Class: Comable::ProductsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- Comable::ProductsController
- Defined in:
- app/controllers/comable/products_controller.rb
Instance Method Summary collapse
Methods included from ApplicationHelper
Instance Method Details
#index ⇒ Object
3 4 5 |
# File 'app/controllers/comable/products_controller.rb', line 3 def index @products = Comable::Product.all end |
#show ⇒ Object
7 8 9 |
# File 'app/controllers/comable/products_controller.rb', line 7 def show @product = Comable::Product.find(params[:id]) end |