feat(legacy): move session store to database (#2523)

This commit is contained in:
Jonas L 2023-05-30 22:25:50 +02:00 committed by GitHub
parent be282fac80
commit 001466f8fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 2259 additions and 5 deletions

View file

@ -136,8 +136,6 @@ class Application_Model_Auth
*/
public static function pinSessionToClient($auth)
{
$session_id = PRODUCT_NAME . '-';
$session_id .= bin2hex(Config::getPublicUrl());
$auth->setStorage(new Zend_Auth_Storage_Session($session_id));
$auth->setStorage(new Zend_Auth_Storage_Session('libretime'));
}
}