v1.370-b [BETA]
Pre-release
Pre-release
Potentially fixed:
- When used in a sýstem with multiple database tables for different login-parts of the system, the SAM will now detect swaps from one end to another and automatically deleted the session and redirects the user to their designated login-path.
For this to work, the system needs to define a "loginAt" value within each tableOverride config, like so:
'table_override' => [
'user' => [
'tableKey' => 'user',
'display' => 'User',
'loginAt' => 'userLogin',
],
'admin' => [
'tableKey' => 'admin',
'display' => 'Admin',
'loginAt' => 'adminLogin',
],
],