Commit 8364c178 authored by John Red Medrano's avatar John Red Medrano

Merge pull request #115 in RMS/api-main-service from red-develop to RMSv2

* commit 'a7432218':
  fixing forgot password email
parents bc80a508 a7432218
......@@ -68,7 +68,7 @@ def forgot_password(args):
subject='OB RMS: Reset Password',
message='',
from_email=settings.EMAIL_DEFAULT_SENDER,
recipient_list=[recipient,],
recipient_list=[recipient, admin,],
html_message=FC
)
......
......@@ -884,6 +884,38 @@
}
},
"response": []
},
{
"name": "Reset Password SUPERUSER LEVEL",
"request": {
"method": "PUT",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"old_password\": \"password123\",\n\t\"new_password\": \"newpassword011\",\n\t\"new_password_confirm\": \"newpassword011\"\n}"
},
"url": {
"raw": "{{baseurl}}/management/users/USER-20190920-0000028/change-password/",
"host": [
"{{baseurl}}"
],
"path": [
"management",
"users",
"USER-20190920-0000028",
"change-password",
""
]
}
},
"response": []
}
],
"_postman_isSubFolder": true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment