mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
15 lines
366 B
Ruby
15 lines
366 B
Ruby
class HomeController < BaseController
|
|
layout 'darkswarm'
|
|
before_filter :load_active_distributors
|
|
|
|
def index
|
|
@num_hubs = Enterprise.is_hub.count
|
|
@num_producers = Enterprise.is_primary_producer.count
|
|
@num_users = Spree::User.joins(:orders).count('DISTINCT spree_users.*')
|
|
@num_orders = Spree::Order.complete.count
|
|
end
|
|
|
|
def about_us
|
|
end
|
|
end
|