[ https://issues.apache.org/jira/browse/FINERACT-47?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15381844#comment-15381844 ]
ASF GitHub Bot commented on FINERACT-47: ---------------------------------------- GitHub user emmanuelnnaa opened a pull request: https://github.com/apache/incubator-fineract/pull/171 commit for FINERACT-47 (Expired user password cannot be updated by the same user) You can merge this pull request into a Git repository by running: $ git pull https://github.com/emmanuelnnaa/incubator-fineract FINERACT-47 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/incubator-fineract/pull/171.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #171 ---- commit a771c998f64f7b5f3736868289b13149ffb5eeff Author: Emmanuel Nnaa <emmanueln...@musoni.eu> Date: 2016-07-18T07:41:12Z commit for FINERACT-47 (Expired user password cannot be updated by the same user) ---- > 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)