mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-03 02:21:33 +00:00
8 lines
145 B
Ruby
8 lines
145 B
Ruby
class ProducersController < BaseController
|
|
layout 'darkswarm'
|
|
|
|
def index
|
|
@producers = Enterprise.is_primary_producer.visible
|
|
end
|
|
end
|