mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
13 lines
297 B
Ruby
13 lines
297 B
Ruby
class GroupsController < BaseController
|
|
layout 'darkswarm'
|
|
before_filter :load_active_distributors
|
|
|
|
def index
|
|
@groups = EnterpriseGroup.on_front_page.by_position
|
|
end
|
|
|
|
def show
|
|
@group = EnterpriseGroup.find_by_permalink(params[:id]) || EnterpriseGroup.find(params[:id])
|
|
end
|
|
end
|