mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 17:08:45 +00:00
fix: default to be created
This commit is contained in:
parent
40eaf39d91
commit
579f6691f9
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ class Rule extends Model
|
|||
->addRule('status', [
|
||||
'type' => self::TYPE_ENUM,
|
||||
'description' => 'Domain verification status. Possible values are "created", "verifying", "verified" and "unverified"',
|
||||
'default' => false,
|
||||
'default' => 'created',
|
||||
'example' => 'verified',
|
||||
'enum' => ['created', 'verifying', 'verified', 'unverified'],
|
||||
])
|
||||
|
|
|
|||
Loading…
Reference in a new issue