Cleaning the browser state on user logout
When the user logs out of a session, the system cleans the local storage from all keys.
If a third-party plugin wants to preserve a local storage key between sessions,
you can set the following configuration flag in the investigate.yml
file:
investigate_access_control:
session_termination_whitelist:
local_storage_keys: ['KEY_NAME_1', 'KEY_NAME_2', ... ]
Using this option might leak sensitive data between different user sessions. |