Merge pull request #24530 from owncloud/backport-24526-forward-user-manager-error-messages-to-ui
[9.0] Pass on the error message from the user manager to the UI
This commit is contained in:
commit
27b12d2901
|
@ -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
|
||||
);
|
||||
|
|
|
@ -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();
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue