Skip to content

v1.370-b [BETA]

Pre-release
Pre-release

Choose a tag to compare

@marcel-maqsood marcel-maqsood released this 21 May 12:58
· 3 commits to main since this 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',
    ],
    ],