mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
Merge pull request #5855 from appwrite/docs-accessed-at
Update description for User and Key accesedAt
This commit is contained in:
commit
ffa823e455
2 changed files with 2 additions and 2 deletions
|
|
@ -60,7 +60,7 @@ class Key extends Model
|
||||||
])
|
])
|
||||||
->addRule('accessedAt', [
|
->addRule('accessedAt', [
|
||||||
'type' => self::TYPE_DATETIME,
|
'type' => self::TYPE_DATETIME,
|
||||||
'description' => 'Most recent access date in ISO 8601 format.',
|
'description' => 'Most recent access date in ISO 8601 format. This attribute is only updated again after ' . APP_KEY_ACCCESS / 60 / 60 . ' hours.',
|
||||||
'default' => '',
|
'default' => '',
|
||||||
'example' => self::TYPE_DATETIME_EXAMPLE
|
'example' => self::TYPE_DATETIME_EXAMPLE
|
||||||
])
|
])
|
||||||
|
|
|
||||||
|
|
@ -122,7 +122,7 @@ class User extends Model
|
||||||
])
|
])
|
||||||
->addRule('accessedAt', [
|
->addRule('accessedAt', [
|
||||||
'type' => self::TYPE_DATETIME,
|
'type' => self::TYPE_DATETIME,
|
||||||
'description' => 'Most recent access date in ISO 8601 format.',
|
'description' => 'Most recent access date in ISO 8601 format. This attribute is only updated again after ' . APP_USER_ACCCESS / 60 / 60 . ' hours.',
|
||||||
'default' => '',
|
'default' => '',
|
||||||
'example' => self::TYPE_DATETIME_EXAMPLE,
|
'example' => self::TYPE_DATETIME_EXAMPLE,
|
||||||
])
|
])
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue