From baf5bb6d4b78231c758c5d621fecc8a1cffda78f Mon Sep 17 00:00:00 2001 From: Sukhwinder Dhillon Date: Fri, 10 Jan 2025 16:31:22 +0100 Subject: [PATCH] RolesConfig: Add missing column `name` for quick search --- library/Icinga/Authentication/RolesConfig.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/library/Icinga/Authentication/RolesConfig.php b/library/Icinga/Authentication/RolesConfig.php index b1773598fe..6412ae42b6 100644 --- a/library/Icinga/Authentication/RolesConfig.php +++ b/library/Icinga/Authentication/RolesConfig.php @@ -42,4 +42,9 @@ protected function initializeQueryColumns() return $columns; } + + protected function initializeSearchColumns(): array + { + return ['name']; + } }