mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
13 lines
268 B
Ruby
13 lines
268 B
Ruby
class DarkswarmController < BaseController
|
|
layout 'darkswarm'
|
|
|
|
# TODO
|
|
# custom filter
|
|
# Get list of producers
|
|
# New?
|
|
# "Orders closing soon" etc, details
|
|
def index
|
|
@active_distributors ||= Enterprise.distributors_with_active_order_cycles
|
|
end
|
|
end
|