Pass on the error message from the user manager to the UI

This commit is contained in:
Joas Schilling 2016-05-10 10:05:26 +02:00
parent a3bdcfbb90
commit decb4789bb
No known key found for this signature in database
GPG Key ID: 70A0B324C41C0946
2 changed files with 6 additions and 2 deletions

View File

@ -355,9 +355,13 @@ class UsersController extends Controller {
try {
$user = $this->userManager->createUser($username, $password);
} catch (\Exception $exception) {
$message = $exception->getMessage();
if (!$message) {
$message = $this->l10n->t('Unable to create user.');
}
return new DataResponse(
array(
'message' => (string)$this->l10n->t('Unable to create user.')
'message' => (string) $message,
),
Http::STATUS_FORBIDDEN
);

View File

@ -825,7 +825,7 @@ $(document).ready(function () {
}).fail(function(result) {
OC.Notification.showTemporary(t('settings', 'Error creating user: {message}', {
message: result.responseJSON.message
}));
}, undefined, {escape: false}));
}).success(function(){
$('#newuser').get(0).reset();
});