mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 17:08:45 +00:00
Add build status docblock
This commit is contained in:
parent
58e68088fa
commit
6c55c73352
2 changed files with 10 additions and 0 deletions
|
|
@ -22,6 +22,11 @@ class Build extends Model
|
|||
'default' => 0,
|
||||
'example' => 1592981250,
|
||||
])
|
||||
// Build Status
|
||||
// Failed - The tag build has failed. More details can usually be found in buildStderr
|
||||
// Ready - The tag build was successful and the tag is ready to be deployed
|
||||
// Processing - The tag is currently waiting to have a build triggered
|
||||
// Building - The tag is currently being built
|
||||
->addRule('status', [
|
||||
'type' => self::TYPE_STRING,
|
||||
'description' => 'The build status.',
|
||||
|
|
|
|||
|
|
@ -40,6 +40,11 @@ class Tag extends Model
|
|||
'default' => 0,
|
||||
'example' => 128,
|
||||
])
|
||||
// Build Status
|
||||
// Failed - The tag build has failed. More details can usually be found in buildStderr
|
||||
// Ready - The tag build was successful and the tag is ready to be deployed
|
||||
// Processing - The tag is currently waiting to have a build triggered
|
||||
// Building - The tag is currently being built
|
||||
->addRule('status', [
|
||||
'type' => self::TYPE_STRING,
|
||||
'description' => 'The tags current built status',
|
||||
|
|
|
|||
Loading…
Reference in a new issue