From 64dcc33f6d6205e3de9e273e7f735c00501f26ae 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 (cherry picked from commit c6c1e283502b734db98c1c9130742193a80a6c39) --- 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 ac5695f11..aac809c19 100644 --- a/library/Icinga/Authentication/RolesConfig.php +++ b/library/Icinga/Authentication/RolesConfig.php @@ -40,4 +40,9 @@ class RolesConfig extends IniRepository return $columns; } + + protected function initializeSearchColumns(): array + { + return ['name']; + } }