From 0e6fa7f3009b89acaa396e42e070634813f75d5c Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Fri, 13 Feb 2026 02:36:29 +1300 Subject: [PATCH] fix: Add missing WhiteList import in teams controller The WhiteList validator was used at lines 486 and 1090 but never imported, causing a "Class not found" error and 500 response instead of proper validation. Co-Authored-By: Claude Opus 4.6 --- app/controllers/api/teams.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/controllers/api/teams.php b/app/controllers/api/teams.php index 1a17750623..de70eab1eb 100644 --- a/app/controllers/api/teams.php +++ b/app/controllers/api/teams.php @@ -56,6 +56,7 @@ use Utopia\Locale\Locale; use Utopia\System\System; use Utopia\Validator\ArrayList; use Utopia\Validator\Assoc; +use Utopia\Validator\WhiteList; use Utopia\Validator\Boolean; use Utopia\Validator\Text;