Skip to content

Commit

Permalink
Add 'persist_refresh_token' key to laravel-auth0 configuration file.
Browse files Browse the repository at this point in the history
Auth0 SDK supports also 'persist_refresh_token' configuration, key is missing on laravel-auth0 configuration file, will be handy to have the key there.
  • Loading branch information
tpenaranda authored and joshcanhelp committed Oct 24, 2019
1 parent 3a8aa20 commit 3824305
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,13 @@
|--------------------------------------------------------------------------
| persist_user (Boolean) Optional. Indicates if you want to persist the user info, default true
| persist_access_token (Boolean) Optional. Indicates if you want to persist the access token, default false
| persist_refresh_token (Boolean) Optional. Indicates if you want to persist the refresh token, default false
| persist_id_token (Boolean) Optional. Indicates if you want to persist the id token, default false
|
*/
'persist_user' => true,
'persist_access_token' => false,
'persist_refresh_token' => false,
'persist_id_token' => false,

/*
Expand Down Expand Up @@ -95,4 +97,4 @@
|
*/
// 'guzzle_options' => []
];
];

0 comments on commit 3824305

Please sign in to comment.