mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
12 lines
222 B
Ruby
12 lines
222 B
Ruby
class HomeController < BaseController
|
|
layout 'darkswarm'
|
|
|
|
def index
|
|
@active_distributors ||= Enterprise.distributors_with_active_order_cycles
|
|
@enterprises = Enterprise.visible
|
|
end
|
|
|
|
def about_us
|
|
end
|
|
end
|