From 4e3c3713951a34cf8160bce7040a5114b2da7c1b Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Tue, 25 Apr 2023 11:13:07 -0400 Subject: [PATCH] APIv4 - Remove incorrect EntityBridge from UFMatch entity UFJoin cannot work as a bridge because it does not connect two CiviCRM entities with each other. So the trait wasn't doing anything except getting in the way of SearchKit being able to perform joins. --- Civi/Api4/UFMatch.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Civi/Api4/UFMatch.php b/Civi/Api4/UFMatch.php index 5854f44130..5907973ba8 100644 --- a/Civi/Api4/UFMatch.php +++ b/Civi/Api4/UFMatch.php @@ -11,13 +11,12 @@ namespace Civi\Api4; /** - * UFMatch entity - links civicrm contacts with users created externally + * Matches CiviCRM contacts with their CMS user accounts * * @searchable secondary * @since 5.19 * @package Civi\Api4 */ class UFMatch extends Generic\DAOEntity { - use Generic\Traits\EntityBridge; } -- 2.25.1