From 32e15559af7eaa59e1a459adabbb7769e6904950 Mon Sep 17 00:00:00 2001 From: Sascha Maier Date: Wed, 13 May 2026 14:12:56 +0200 Subject: [PATCH] [BUGFIX] Restrict aim backend module to admins (#17) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🔒 Add 'access' => 'admin' to the aim parent module entry 🛡️ Hide module from non-admin backend users (was visible because TYPO3 13 core does not honor appearance.dependsOnSubmodules) --- Configuration/Backend/Modules.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Configuration/Backend/Modules.php b/Configuration/Backend/Modules.php index 1771824..08b1d12 100644 --- a/Configuration/Backend/Modules.php +++ b/Configuration/Backend/Modules.php @@ -7,6 +7,7 @@ return [ 'aim' => [ 'parent' => $parent, + 'access' => 'admin', 'position' => ['before' => '*'], 'appearance' => [ 'dependsOnSubmodules' => true,