From 62b510d73714ecac289c750dc4d0c873ce1bfc2a Mon Sep 17 00:00:00 2001 From: Troels Johnsen Date: Mon, 25 Jan 2016 07:40:52 +0100 Subject: [PATCH] Added optional persistence configuration values --- src/config/config.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/config/config.php b/src/config/config.php index 82843c64..971f6a2d 100644 --- a/src/config/config.php +++ b/src/config/config.php @@ -42,6 +42,18 @@ // 'redirect_uri' => 'http:///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, );