mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
8 lines
196 B
Ruby
8 lines
196 B
Ruby
class MapController < BaseController
|
|
layout 'darkswarm'
|
|
def index
|
|
@active_distributors ||= Enterprise.distributors_with_active_order_cycles
|
|
@enterprises = Enterprise.visible
|
|
end
|
|
end
|