mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-25 02:05:10 -04: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
|