Skip to content

Commit

Permalink
[BUGFIX] Make module accessible for editors
Browse files Browse the repository at this point in the history
After this commit the module can be selected in user groups to be allowed to be accessed
  • Loading branch information
einpraegsam committed Oct 2, 2024
1 parent c422f87 commit e9efe41
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Configuration/Backend/Modules.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
],
],
],
];

0 comments on commit e9efe41

Please sign in to comment.