diff --git a/app/config/collections.php b/app/config/collections.php index 86008d2efe..f8254bf889 100644 --- a/app/config/collections.php +++ b/app/config/collections.php @@ -578,17 +578,6 @@ $collections = [ 'array' => false, 'filters' => [], ], - [ - '$id' => ID::custom('paused'), - 'type' => Database::VAR_BOOLEAN, - 'format' => '', - 'size' => 0, - 'signed' => true, - 'required' => false, - 'default' => false, - 'array' => false, - 'filters' => [], - ], [ '$id' => ID::custom('legalName'), 'type' => Database::VAR_STRING, diff --git a/src/Appwrite/Extend/Exception.php b/src/Appwrite/Extend/Exception.php index 6a5e26df72..c0c4ad0925 100644 --- a/src/Appwrite/Extend/Exception.php +++ b/src/Appwrite/Extend/Exception.php @@ -39,7 +39,6 @@ class Exception extends \Exception public const GENERAL_MOCK = 'general_mock'; public const GENERAL_ACCESS_FORBIDDEN = 'general_access_forbidden'; public const GENERAL_UNKNOWN_ORIGIN = 'general_unknown_origin'; - public const GENERAL_PROJECT_PAUSED = 'general_project_paused'; public const GENERAL_SERVICE_DISABLED = 'general_service_disabled'; public const GENERAL_UNAUTHORIZED_SCOPE = 'general_unauthorized_scope'; public const GENERAL_RATE_LIMIT_EXCEEDED = 'general_rate_limit_exceeded'; diff --git a/src/Appwrite/Utopia/Response/Model/Project.php b/src/Appwrite/Utopia/Response/Model/Project.php index 2f46bb7c95..6fbc794698 100644 --- a/src/Appwrite/Utopia/Response/Model/Project.php +++ b/src/Appwrite/Utopia/Response/Model/Project.php @@ -66,12 +66,6 @@ class Project extends Model 'default' => '', 'example' => '5f5c451b403cb', ]) - ->addRule('paused', [ - 'type' => self::TYPE_BOOLEAN, - 'description' => 'Project Paused.', - 'default' => false, - 'example' => true, - ]) ->addRule('legalName', [ 'type' => self::TYPE_STRING, 'description' => 'Company legal name.',