Files
growstuff/app/controllers/shop_controller.rb
2013-05-08 15:05:38 +10:00

9 lines
166 B
Ruby

class ShopController < ApplicationController
def index
@products = Product.all
respond_to do |format|
format.html # index.html.haml
end
end
end