From 2cfaa2223e9766f16d784c32ffb257981393f308 Mon Sep 17 00:00:00 2001 From: shimon Date: Wed, 7 Jan 2026 18:19:20 +0200 Subject: [PATCH] feat: inject EventProcessor into Update transaction for enhanced event handling --- .../Modules/Databases/Http/TablesDB/Transactions/Update.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Transactions/Update.php b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Transactions/Update.php index 4337a8d28d..86c18a32f6 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Transactions/Update.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Transactions/Update.php @@ -60,6 +60,7 @@ class Update extends TransactionsUpdate ->inject('queueForRealtime') ->inject('queueForFunctions') ->inject('queueForWebhooks') + ->inject('eventProcessor') ->callback($this->action(...)); } }