From e9efe41a2d58e741682ca1af893413a2468b1952 Mon Sep 17 00:00:00 2001 From: Alexander Kellner Date: Wed, 2 Oct 2024 14:08:51 +0200 Subject: [PATCH] [BUGFIX] Make module accessible for editors After this commit the module can be selected in user groups to be allowed to be accessed --- Configuration/Backend/Modules.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Configuration/Backend/Modules.php b/Configuration/Backend/Modules.php index 7a8b782..cd1815d 100644 --- a/Configuration/Backend/Modules.php +++ b/Configuration/Backend/Modules.php @@ -3,13 +3,16 @@ return [ 'web_in2help' => [ 'parent' => 'help', - 'position' => '', - 'access' => 'user, group', + 'position' => [], + 'access' => 'user', 'iconIdentifier' => 'in2help', 'labels' => 'LLL:EXT:in2help/Resources/Private/Language/locallang_in2help.xlf', 'path' => '/module/help/m1', 'extensionName' => 'In2help', 'controllerActions' => [ - \In2code\In2help\Controller\HelpController::class => 'index'] + \In2code\In2help\Controller\HelpController::class => [ + 'index', + ], + ], ], ];