Files
openfoodnetwork/app/controllers/groups_controller.rb
2015-01-06 22:39:15 +11:00

13 lines
246 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 params[:id]
end
end