1
0
Fork 0
mirror of synced 2024-06-27 02:31:04 +12:00

Apply suggestions from code review

Co-authored-by: Brandon <robertsbt@gmail.com>
This commit is contained in:
Matej Bačo 2022-02-01 18:14:58 +01:00 committed by GitHub
parent 8f58069b48
commit 6256e824ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,13 +42,13 @@ class Session extends Model
])
->addRule('providerAccessToken', [
'type' => self::TYPE_STRING,
'description' => 'Session Provider AccessToken.',
'description' => 'Session Provider Access Token.',
'default' => '',
'example' => 'MTQ0NjJkZmQ5OTM2NDE1ZTZjNGZmZjI3',
])
->addRule('providerAccessTokenExpiry', [
'type' => self::TYPE_INTEGER,
'description' => 'Date, the user has accepted the invitation to join the team in Unix timestamp.',
'description' => 'Date, the Unix timestamp of when the access token expires',
'default' => 0,
'example' => 1592981250,
])