mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +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
|