User accounts get blocked after 3 consecutive incorrect logins.

0
User accounts get blocked after 3 consecutive incorrect logins. In an applicaiton which i have been supporting. But i am b=not able to identify where this configuration is made within the modeler. And i cant even see the login screen or any microflows associated to login in the system. Any help would be appreciated.
asked
1 answers
5

This is standard Mendix functionality, which is part of the standard login action, so you will not find it in the modeler. There is no setting to influence this behavior.

You could override this by creating a BeforeCommit event handler on Account, or any other entity which inherits from System.User, and set FailedLogins to 0 (or create your own logic, as setting this value to 0 reduces the security of your application).

answered