adamsaghy commented on code in PR #5443:
URL: https://github.com/apache/fineract/pull/5443#discussion_r2827224591
##########
fineract-core/src/main/java/org/apache/fineract/useradministration/domain/AppUser.java:
##########
@@ -684,6 +731,10 @@ private Set<AppUserClientMapping>
createAppUserClientMappings(Collection<Client>
return newAppUserClientMappings;
}
+ private static boolean isDefaultLoginRetriesExemptUser(final String
username, final Boolean cannotChangePassword) {
+ return AppUserConstants.SYSTEM_USER_NAME.equalsIgnoreCase(username) ||
Boolean.TRUE.equals(cannotChangePassword);
Review Comment:
The system user part i got, but the `cannot change password` is why needed?
--
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]