You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@fineract.apache.org by "Emmanuel Nnaa (JIRA)" <ji...@apache.org> on 2016/02/26 12:07:18 UTC

[jira] [Created] (FINERACT-47) Expired user password cannot be updated by the same user

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)