From c6c1e283502b734db98c1c9130742193a80a6c39 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 b1773598f..6412ae42b 100644 --- a/library/Icinga/Authentication/RolesConfig.php +++ b/library/Icinga/Authentication/RolesConfig.php @@ -42,4 +42,9 @@ class RolesConfig extends IniRepository return $columns; } + + protected function initializeSearchColumns(): array + { + return ['name']; + } }