Files
openfoodnetwork/app/controllers/producers_controller.rb
2022-01-18 12:22:06 +00:00

19 lines
365 B
Ruby

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