Revert "Add language support for user creation in api"

This commit is contained in:
Morris Jobke 2018-04-12 11:00:54 +02:00 committed by GitHub
parent d3f2b6aef4
commit 10b37a074c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 6 deletions

View File

@ -206,8 +206,7 @@ class UsersController extends AUserData {
string $email = '',
array $groups = [],
array $subadmin = [],
string $quota = '',
string $language = 'en'): DataResponse {
string $quota = ''): DataResponse {
$user = $this->userSession->getUser();
$isAdmin = $this->groupManager->isAdmin($user->getUID());
$subAdminManager = $this->groupManager->getSubAdmin();
@ -280,10 +279,6 @@ class UsersController extends AUserData {
$this->editUser($userid, 'quota', $quota);
}
if ($language !== '') {
$this->editUser($userid, 'language', $language);
}
// Send new user mail only if a mail is set
if ($email !== '') {
$newUser->setEMailAddress($email);