1
0
Fork 0
mirror of synced 2024-08-04 04:52:03 +12:00
This commit is contained in:
Damodar Lohani 2023-04-05 02:42:55 +00:00
parent a73961e98c
commit 46444b1456
3 changed files with 0 additions and 18 deletions

View file

@ -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,

View file

@ -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';

View file

@ -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.',