update to ManagerAccount.v1_3_0
The PasswordChangeRequired commit did not pass the Redfish validator.
It uses the ManagerAccount.PasswordChangeRequired property which was added
in 1_3_0.
Tested: Passed the Redfish Service Validator
Signed-off-by: Joseph Reynolds <joseph-reynolds@charter.net>
Change-Id: Icb3bacd887c018baad107c22ddd7623243232339
diff --git a/redfish-core/lib/account_service.hpp b/redfish-core/lib/account_service.hpp
index 609c7db..d41a419 100644
--- a/redfish-core/lib/account_service.hpp
+++ b/redfish-core/lib/account_service.hpp
@@ -132,14 +132,14 @@
"xyz.openbmc_project.User.Common.Error.UserNameExists") == 0)
{
messages::resourceAlreadyExists(asyncResp->res,
- "#ManagerAccount.v1_0_3.ManagerAccount",
+ "#ManagerAccount.v1_3_0.ManagerAccount",
"UserName", newUser);
}
else if (strcmp(errorMessage, "xyz.openbmc_project.User.Common.Error."
"UserNameDoesNotExist") == 0)
{
messages::resourceNotFound(
- asyncResp->res, "#ManagerAccount.v1_0_3.ManagerAccount", username);
+ asyncResp->res, "#ManagerAccount.v1_3_0.ManagerAccount", username);
}
else if (strcmp(errorMessage,
"xyz.openbmc_project.Common.Error.InvalidArgument") == 0)
@@ -1575,7 +1575,7 @@
}
asyncResp->res.jsonValue = {
- {"@odata.type", "#ManagerAccount.v1_0_3.ManagerAccount"},
+ {"@odata.type", "#ManagerAccount.v1_3_0.ManagerAccount"},
{"Name", "User Account"},
{"Description", "User Account"},
{"Password", nullptr}};
@@ -1772,7 +1772,7 @@
if (!rc)
{
messages::resourceNotFound(
- asyncResp->res, "#ManagerAccount.v1_0_3.ManagerAccount",
+ asyncResp->res, "#ManagerAccount.v1_3_0.ManagerAccount",
username);
return;
}
@@ -1785,7 +1785,7 @@
{
messages::resourceNotFound(
asyncResp->res,
- "#ManagerAccount.v1_0_3.ManagerAccount", username);
+ "#ManagerAccount.v1_3_0.ManagerAccount", username);
}
else if (retval == PAM_AUTHTOK_ERR)
{
@@ -1907,7 +1907,7 @@
if (ec)
{
messages::resourceNotFound(
- asyncResp->res, "#ManagerAccount.v1_0_3.ManagerAccount",
+ asyncResp->res, "#ManagerAccount.v1_3_0.ManagerAccount",
username);
return;
}