adamsaghy commented on code in PR #5443:
URL: https://github.com/apache/fineract/pull/5443#discussion_r2827218797
##########
fineract-core/src/main/java/org/apache/fineract/useradministration/domain/AppUser.java:
##########
@@ -86,6 +86,14 @@ public class AppUser extends AbstractPersistableCustom<Long>
implements Platform
@Column(name = "nonlocked", nullable = false)
private boolean accountNonLocked;
+ @Getter
+ @Column(name = "failed_login_attempts", nullable = false)
+ private int failedLoginAttempts;
+
+ @Getter
+ @Column(name = "is_login_retries_enabled", nullable = false)
+ private boolean loginRetriesEnabled;
Review Comment:
Name is misleading. This is a flag to control whether login retries are
**limited** or not. Please make sure it reflects it.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]