Emmanuel Nnaa created FINERACT-47:
-------------------------------------

             Summary: Expired user password cannot be updated by the same user
                 Key: FINERACT-47
                 URL: https://issues.apache.org/jira/browse/FINERACT-47
             Project: Apache Fineract
          Issue Type: Bug
            Reporter: Emmanuel Nnaa
            Assignee: Markus Geiss
            Priority: Minor


The "SynchronousCommandProcessingService.publishEvent" method calls the method 
"PlatformSecurityContext.authenticatedUser()" that does not exempt the update 
of a user's data from the password expiration check.

*Change the following line*
{code}
final AppUser appUser = this.context.authenticatedUser();
{code}


*To*
{code}
final AppUser appUser = 
this.context.authenticatedUser(CommandWrapper.wrap(actionName, entityName, 
null, null));
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to