How to disable user lockout in Mendix

1
Is it possible to disable the user lockout in Mendix? By default users are blocked for 5 minutes after 3 failed atempts.
asked
1 answers
2

You can add a BeforeCommit event handler to the Account entity which sets the number of failed logins to 0. This will result in the value never reaching three and lock outs will not occur.

Note that you can only test this in a production environment.

answered