mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
11 lines
184 B
Ruby
11 lines
184 B
Ruby
class HomeController < BaseController
|
|
layout 'darkswarm'
|
|
|
|
def index
|
|
@active_distributors ||= Enterprise.distributors_with_active_order_cycles
|
|
end
|
|
|
|
def about_us
|
|
end
|
|
end
|