Enable 2.5 feature 'Change Password'

Hi Everyone ,

the change password feature which was added on version 2.5 ,
supports only Security Mode 1 (at the moment).

If you do want to enable it -
there are 2 steps to follow :

  1. edit the file settings.json (located under the WEB-INF/config folder in the webapp)
    modify the ‘allowedRestPaths’ parameter to the following value.
    “allowedRestPaths”: [

    {

    “path”: “/ExecuteProcessWithReturn”,

    “method”: “POST”

    },

    {

    “path”: “/Users.*”,

    “method”: “PATCH”

    }

],

  1. in the default constants .js file -
    change : ‘ALLOW_PASSWORD_CHANGE’: true,
2 Likes