Details
-
Bug
-
Status: Closed
-
Resolution: No Longer Reproducible
-
Master
-
3
-
Windows 10
Description
Steps to reproduce:
- Add jsonws.web.service.paths.excludes= to portal-ext.properties
- Add a user, get its userId
- Change the password via http://localhost:8080/api/jsonws update-password
- Navigate to curl Example tab
- Check the curl example
Actual result:
There are single quotes in email address.
curl http://localhost:8080/api/jsonws/user/update-password \ -u [email protected]:test \ -d userId=37894 \ -d password1='test4' \ -d password2='test4' \ -d passwordReset=false
Expected result:
There aren't single quotes in email address or has a tip for Windows user.
curl http://localhost:8080/api/jsonws/user/update-password \ -u [email protected]:test \ -d userId=37894 \ -d password1=test4 \ -d password2=test4 \ -d passwordReset=false