mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-19 19:46:51 +00:00
10 lines
267 B
Ruby
10 lines
267 B
Ruby
class GroupsController < BaseController
|
|
layout 'darkswarm'
|
|
|
|
def show
|
|
enable_embedded_shopfront
|
|
@hide_menu = true if @shopfront_layout == 'embedded'
|
|
@group = EnterpriseGroup.find_by_permalink(params[:id]) || EnterpriseGroup.find(params[:id])
|
|
end
|
|
end
|