Files
openfoodnetwork/app/controllers/shops_controller.rb

17 lines
344 B
Ruby

class ShopsController < BaseController
layout 'darkswarm'
before_filter :enable_embedded_shopfront
def index
@enterprises = Enterprise
.activated
.visible
.is_distributor
.includes(address: [:state, :country])
.includes(:properties)
.includes(supplied_products: :properties)
.all
end
end