mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-02-28 04:37:38 -05:00
9 lines
166 B
Ruby
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
|