mirror of
https://github.com/nextcloud/server.git
synced 2026-03-04 18:28:08 +01:00
show a better error message when trying to create a user that already exists
This commit is contained in:
@@ -286,6 +286,15 @@ class UsersController extends Controller {
|
||||
}
|
||||
}
|
||||
|
||||
if ($this->userManager->userExists($username)) {
|
||||
return new DataResponse(
|
||||
array(
|
||||
'message' => (string)$this->l10n->t('A user with that name already exists.')
|
||||
),
|
||||
Http::STATUS_CONFLICT
|
||||
);
|
||||
}
|
||||
|
||||
try {
|
||||
$user = $this->userManager->createUser($username, $password);
|
||||
} catch (\Exception $exception) {
|
||||
|
||||
Reference in New Issue
Block a user