1
0
Fork 0
mirror of synced 2024-09-28 07:21:35 +12:00

More review changes

This commit is contained in:
Matej Bačo 2022-02-03 11:58:21 +00:00
parent 3fe98a6f30
commit ecb91193b7
2 changed files with 2 additions and 2 deletions

View file

@ -1655,7 +1655,7 @@ App::delete('/v1/account/sessions/:sessionId')
});
App::patch('/v1/account/sessions/:sessionId')
->desc('Update session - refresh OAuth2 access token')
->desc('Update Session (Refresh Tokens)')
->groups(['api', 'account'])
->label('scope', 'account')
->label('event', 'account.sessions.update')

View file

@ -48,7 +48,7 @@ class Session extends Model
])
->addRule('providerAccessTokenExpiry', [
'type' => self::TYPE_INTEGER,
'description' => 'Date, the Unix timestamp of when the access token expires',
'description' => 'Date, the Unix timestamp of when the access token expires.',
'default' => 0,
'example' => 1592981250,
])