mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
fix: execution status enum description
This commit is contained in:
parent
3733df6fc5
commit
ffb2a02ea0
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ class Execution extends Model
|
||||||
])
|
])
|
||||||
->addRule('status', [
|
->addRule('status', [
|
||||||
'type' => self::TYPE_ENUM,
|
'type' => self::TYPE_ENUM,
|
||||||
'description' => 'The status of the function execution. Possible values can be: `waiting`, `processing`, `completed`, or `failed`.',
|
'description' => 'The status of the function execution. Possible values can be: `waiting`, `processing`, `completed`, `failed`, or `scheduled`.',
|
||||||
'default' => '',
|
'default' => '',
|
||||||
'example' => 'processing',
|
'example' => 'processing',
|
||||||
'enum' => ['waiting', 'processing', 'completed', 'failed', 'scheduled'],
|
'enum' => ['waiting', 'processing', 'completed', 'failed', 'scheduled'],
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue