Skip to content

Commit 3824305

Browse files
tpenarandajoshcanhelp
authored andcommitted
Add 'persist_refresh_token' key to laravel-auth0 configuration file.
Auth0 SDK supports also 'persist_refresh_token' configuration, key is missing on laravel-auth0 configuration file, will be handy to have the key there.
1 parent 3a8aa20 commit 3824305

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/config/config.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,13 @@
4545
|--------------------------------------------------------------------------
4646
| persist_user (Boolean) Optional. Indicates if you want to persist the user info, default true
4747
| persist_access_token (Boolean) Optional. Indicates if you want to persist the access token, default false
48+
| persist_refresh_token (Boolean) Optional. Indicates if you want to persist the refresh token, default false
4849
| persist_id_token (Boolean) Optional. Indicates if you want to persist the id token, default false
4950
|
5051
*/
5152
'persist_user' => true,
5253
'persist_access_token' => false,
54+
'persist_refresh_token' => false,
5355
'persist_id_token' => false,
5456

5557
/*
@@ -95,4 +97,4 @@
9597
|
9698
*/
9799
// 'guzzle_options' => []
98-
];
100+
];

0 commit comments

Comments
 (0)