Skip to content
Snippets Groups Projects
Verified Commit f42bb7c6 authored by Damien's avatar Damien
Browse files

FEAT #9067 Error when sending to Parapheur

parent c926cc47
No related branches found
No related tags found
No related merge requests found
......@@ -1374,6 +1374,9 @@ class UserController
} else {
$errors = $curlResponse['errors'];
}
if (empty($errors)) {
$errors = 'An error occured. Please check your configuration file.';
}
return $response->withStatus(400)->withJson(['errors' => $errors]);
}
} else {
......@@ -1469,6 +1472,9 @@ class UserController
} else {
$errors = $curlResponse['errors'];
}
if (empty($errors)) {
$errors = 'An error occured. Please check your configuration file.';
}
return $response->withStatus(400)->withJson(['errors' => $errors]);
}
} else {
......
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