mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
12 lines
299 B
Ruby
12 lines
299 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|