Files
openfoodnetwork/app/controllers/groups_controller.rb
2017-10-06 14:24:28 +11:00

13 lines
285 B
Ruby

class GroupsController < BaseController
layout 'darkswarm'
def index
@groups = EnterpriseGroup.on_front_page.by_position
end
def show
enable_embedded_shopfront
@group = EnterpriseGroup.find_by_permalink(params[:id]) || EnterpriseGroup.find(params[:id])
end
end