From fc84012977debb9b7cae74dc2de4ac964cc3b1c4 Mon Sep 17 00:00:00 2001 From: shimon Date: Tue, 6 Jan 2026 12:56:18 +0200 Subject: [PATCH] Inject user dependency into XList class for enhanced functionality and improved caching accuracy. --- .../Modules/Databases/Http/TablesDB/Tables/Rows/XList.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Tables/Rows/XList.php b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Tables/Rows/XList.php index 28c6bcaf7a..38a2589503 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Tables/Rows/XList.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Tables/Rows/XList.php @@ -60,6 +60,7 @@ class XList extends DocumentXList ->param('ttl', 30, new Range(min: 1, max: 86400), 'TTL (seconds) for cached respnses when caching is enabled. Must be between 1 and 86400 (24 hours).', true) ->inject('response') ->inject('dbForProject') + ->inject('user') ->inject('queueForStatsUsage') ->inject('transactionState') ->inject('authorization')