fix: [user search] in index, removed old style authkey as a valid search field

pull/9370/head
iglocska 2023-10-24 19:55:36 +02:00
parent 94585b4dad
commit f2ff8441e3
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
1 changed files with 1 additions and 2 deletions

View File

@ -419,8 +419,7 @@ class UsersController extends AppController
'OR' => array(
'UPPER(User.email) LIKE' => $searchValue,
'UPPER(Organisation.name) LIKE' => $searchValue,
'UPPER(Role.name) LIKE' => $searchValue,
'UPPER(User.authkey) LIKE' => $searchValue,
'UPPER(Role.name) LIKE' => $searchValue
),
);
} else {