Cleaning the browser state on user logout
When the user logs out of a session, the system cleans the browser’s indexed databases and local storage of all keys used by Investigate.
If a third-party plugin wants to preserve an indexed database or 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', ... ]
indexedDbDatabaseNames: ['DB_NAME_1', 'DB_NAME_2', ... ]
Using this option might leak sensitive data between different user sessions. |