Skip to content
Snippets Groups Projects
Commit 9f062dab authored by Quentin Ribac's avatar Quentin Ribac
Browse files

FEAT #14839 TIME 0:02 removed password from multigest global configuration

parent 3d865c28
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,6 @@ class MultigestController
}
$configuration = json_decode($configuration['value'], true);
unset($configuration['password']);
return $response->withJson(['configuration' => $configuration]);
}
......@@ -67,15 +66,10 @@ class MultigestController
if (!Validator::stringType()->notEmpty()->validate($body['uri'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body uri is empty or not a string']);
} elseif (!Validator::stringType()->notEmpty()->validate($body['login'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body login is empty or not a string']);
} elseif (!Validator::stringType()->notEmpty()->validate($body['password'])) { // TODO login with password or certificate ?
return $response->withStatus(400)->withJson(['errors' => 'Body password is empty or not a string']);
}
$value = json_encode([
'uri' => trim($body['uri']),
'login' => trim($body['login']),
'password' => PasswordModel::encrypt(['password' => $body['password']])
'uri' => trim($body['uri'])
]);
$configuration = ConfigurationModel::getByPrivilege(['privilege' => 'admin_multigest']);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment