mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
fix: execution status enum description
This commit is contained in:
@@ -60,7 +60,7 @@ class Execution extends Model
|
||||
])
|
||||
->addRule('status', [
|
||||
'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' => '',
|
||||
'example' => 'processing',
|
||||
'enum' => ['waiting', 'processing', 'completed', 'failed', 'scheduled'],
|
||||
|
||||
Reference in New Issue
Block a user