From 1620fd3e596973a545c4b63a683647208d78db57 Mon Sep 17 00:00:00 2001 From: Sami Mokaddem Date: Fri, 24 Feb 2023 10:31:33 +0100 Subject: [PATCH] chg: [encryptionKey] Made key searchable with substring strategy --- src/Controller/EncryptionKeysController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/EncryptionKeysController.php b/src/Controller/EncryptionKeysController.php index 39453b2..fb524a5 100644 --- a/src/Controller/EncryptionKeysController.php +++ b/src/Controller/EncryptionKeysController.php @@ -15,7 +15,7 @@ use Cake\Error\Debugger; class EncryptionKeysController extends AppController { public $filterFields = ['owner_model', 'owner_id', 'encryption_key']; - public $quickFilterFields = ['encryption_key']; + public $quickFilterFields = [['encryption_key' => true]]; public $containFields = ['Individuals', 'Organisations']; public $statisticsFields = ['type'];