mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
9 lines
182 B
Ruby
9 lines
182 B
Ruby
class GroupsController < BaseController
|
|
layout 'darkswarm'
|
|
before_filter :load_active_distributors
|
|
|
|
def index
|
|
@groups = EnterpriseGroup.on_front_page.by_position
|
|
end
|
|
end
|