Change lockout interval

0
Is it possible to change to default lockout interval of 5 minutes? Also, can this interval be retrieved in the model? What I want to achieve is to set the lockout to 24hours instead of 5 minutes. Now, when a user uses a wrong password, something like 'The password is incorrect, you have 2 attempts left or your account will be locked for 24 hours' should be displayed'
asked
1 answers
0

There is a constant which influences this interval: ClusterManagerActionInterval

As the clustermanager takes care of a few more actions (as you can read here: https://world.mendix.com/pages/releaseview.action?pageId=14450815) you probably don't want to set this interval to 24H.

Maybe you can intercept the block (before commit) and set a custom attribute when a user gets blockd. With an alternative home microflow, you can check this attribute after login and act accordingly.

answered