More fine-grained cookie control.

This commit is contained in:
James Cole 2016-03-22 15:04:51 +01:00
parent 532aa2acd0
commit 7227418c4c
3 changed files with 8 additions and 4 deletions

View File

@ -13,6 +13,10 @@ CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync
COOKIE_PATH="/"
COOKIE_DOMAIN=
COOKIE_SECURE=false
DEFAULT_CURRENCY=EUR
DEFAULT_LANGUAGE=en_US

View File

@ -2,7 +2,7 @@
return [
'chart' => 'chartjs',
'version' => '3.8.0',
'version' => '3.8.1',
'index_periods' => ['1D', '1W', '1M', '3M', '6M', '1Y', 'custom'],
'budget_periods' => ['daily', 'weekly', 'monthly', 'quarterly', 'half-year', 'yearly'],
'csv_import_enabled' => true,

View File

@ -122,7 +122,7 @@ return [
|
*/
'path' => '/',
'path' => env('COOKIE_PATH', '/'),
/*
|--------------------------------------------------------------------------
@ -135,7 +135,7 @@ return [
|
*/
'domain' => null,
'domain' => env('COOKIE_DOMAIN', null),
/*
|--------------------------------------------------------------------------
@ -148,6 +148,6 @@ return [
|
*/
'secure' => false,
'secure' => env('COOKIE_SECURE', false),
];