From 6967c03d8b78de39460c1007cfc0611ec6ef4a2b Mon Sep 17 00:00:00 2001 From: iglocska Date: Tue, 14 May 2024 15:18:31 +0200 Subject: [PATCH] new: [encryption key index] added search by org name / individual email --- src/Controller/EncryptionKeysController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Controller/EncryptionKeysController.php b/src/Controller/EncryptionKeysController.php index 0bbc74e..3637095 100644 --- a/src/Controller/EncryptionKeysController.php +++ b/src/Controller/EncryptionKeysController.php @@ -14,8 +14,8 @@ use Cake\Error\Debugger; class EncryptionKeysController extends AppController { - public $filterFields = ['owner_model', 'owner_id', 'encryption_key']; - public $quickFilterFields = [['encryption_key' => true]]; + public $filterFields = ['owner_model', 'owner_id', 'encryption_key', 'Individuals.email', 'Organisations.name']; + public $quickFilterFields = [['encryption_key' => true], ['Individuals.email' => true], ['Organisations.name' => true]]; public $containFields = ['Individuals', 'Organisations']; public $statisticsFields = ['type'];