From 6c336119160144f688517e10adb7e6c1fd9a8f26 Mon Sep 17 00:00:00 2001 From: Sebastian Krupinski Date: Thu, 23 Jul 2026 22:50:16 -0400 Subject: [PATCH] fix: correct module handle to match folder name and sibling convention Handle and permission key were 'people_provider_local' (word order transposed), inconsistent with the folder name and every sibling provider_local_* module. This broke module:install/module:enable when invoked with the folder name, as done in CI and by every other module. Signed-off-by: Sebastian Krupinski --- lib/Module.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Module.php b/lib/Module.php index 0723249..e62c1e4 100644 --- a/lib/Module.php +++ b/lib/Module.php @@ -19,7 +19,7 @@ class Module extends ModuleInstanceAbstract implements ModuleBrowserInterface public function handle(): string { - return 'people_provider_local'; + return 'provider_local_people'; } public function label(): string @@ -45,7 +45,7 @@ class Module extends ModuleInstanceAbstract implements ModuleBrowserInterface public function permissions(): array { return [ - 'people_provider_local' => [ + 'provider_local_people' => [ 'label' => 'Access People Provider Local', 'description' => 'View and access the local people provider module', 'group' => 'People Providers'