airajena commented on code in PR #5443:
URL: https://github.com/apache/fineract/pull/5443#discussion_r2848988343
##########
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:
Internally renamed the domain flag to reflect actual semantics
--
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]