Skip to content

Organization Settings

Updating Organisation Inactivity Timeout

These are the instructions for setting/updating an organisation's inactivity timeout. Currently, there is no UI for doing this, it has to be done in the database directly.

There is a field in the database that controls the timeout: entity_account.seconds_of_inactivity_to_logout_after.

Adding Inactivity Timeout

UPDATE `entity_account`
SET `seconds_of_inactivity_to_logout_after` = 1800
WHERE entity_id = ORGANISATION_ENTITY_ID_HERE
LIMIT 1;

Removing Inactivity Timeout

UPDATE `entity_account`
SET `seconds_of_inactivity_to_logout_after` = NULL
WHERE entity_id = ORGANISATION_ENTITY_ID_HERE
LIMIT 1;
Last modified by: Unknown