Fix session timeout issues on browser close.

This commit is contained in:
Dane Everitt 2017-02-02 16:29:37 -05:00
parent 7f51e5df62
commit fb589a7f4e
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 3 additions and 2 deletions

View file

@ -14,6 +14,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
### Fixed
* Bug causing error logs to be spammed if someone timed out on an ajax based page.
* Fixes edge case where specific server names could cause daemon errors due to an invalid SFTP username being created by the panel.
* Fixes sessions being removed on browser close, and set sessions to idle for up to 3 hours before being marked as expired.
### Changed
* Admin API and base routes for user management now define the fields that should be passed to repositories rather than passing all fields.

View file

@ -29,9 +29,9 @@ return [
|
*/
'lifetime' => 30,
'lifetime' => 120,
'expire_on_close' => true,
'expire_on_close' => false,
/*
|--------------------------------------------------------------------------