Files
openfoodnetwork/app/controllers/producers_controller.rb
2020-03-23 19:33:15 +01:00

17 lines
353 B
Ruby

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