From 2fc2846bc4dcc0fa878f3f0099a92c1e02616d06 Mon Sep 17 00:00:00 2001 From: Benn Oshrin Date: Thu, 24 Jul 2025 11:04:00 -0400 Subject: [PATCH] Fix missing $reqAction definition in RegistryAuthComponent (NOJIRA) --- app/src/Controller/Component/RegistryAuthComponent.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/src/Controller/Component/RegistryAuthComponent.php b/app/src/Controller/Component/RegistryAuthComponent.php index f68e218eb..5df86abcc 100644 --- a/app/src/Controller/Component/RegistryAuthComponent.php +++ b/app/src/Controller/Component/RegistryAuthComponent.php @@ -334,6 +334,9 @@ protected function calculatePermissions(?int $id=null): array { $ret = []; + // Get the action + $reqAction = $controller->getRequest()->getParam('action'); + // This will need to be prefixed to the model, if set $pluginName = $controller->getPlugin();