Skip to content

Commit

Permalink
Merge pull request #29 from carnevalle/patch-1
Browse files Browse the repository at this point in the history
Added optional persistence configuration values
  • Loading branch information
glena committed Jan 25, 2016
2 parents be0d231 + 62b510d commit 0af65fe
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,18 @@

// 'redirect_uri' => 'http://<host>/auth0/callback'

/*
|--------------------------------------------------------------------------
| Persistence Configuration
|--------------------------------------------------------------------------
| 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_id_token (Boolean) Optional. Indicates if you want to persist the id token, default false
|
*/

// 'persist_user' => true,
// 'persist_access_token' => false,
// 'persist_id_token' => false,

);

0 comments on commit 0af65fe

Please sign in to comment.