From f5ab593261cf43664b50f28fa836649440e28c21 Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Wed, 8 Apr 2026 10:47:37 +0530 Subject: [PATCH] fix: make Project model public for server SDK spec generation The project.updateLabels route uses AuthType::KEY which makes it available on the server platform, but the Project model had public=false causing it to be filtered out during spec generation. --- src/Appwrite/Utopia/Response/Model/Project.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Utopia/Response/Model/Project.php b/src/Appwrite/Utopia/Response/Model/Project.php index 5902902e9e..9378ebad86 100644 --- a/src/Appwrite/Utopia/Response/Model/Project.php +++ b/src/Appwrite/Utopia/Response/Model/Project.php @@ -12,7 +12,7 @@ class Project extends Model /** * @var bool */ - protected bool $public = false; + protected bool $public = true; public function __construct() {