Add language support for user creation

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ (skjnldsv) 2018-04-10 12:08:10 +02:00
parent 056660bf7c
commit 6028d60038
No known key found for this signature in database
GPG Key ID: 60C25B8C072916CF
1 changed files with 6 additions and 1 deletions

View File

@ -206,7 +206,8 @@ class UsersController extends AUserData {
string $email = '',
array $groups = [],
array $subadmin = [],
string $quota = ''): DataResponse {
string $quota = '',
string $language = 'en'): DataResponse {
$user = $this->userSession->getUser();
$isAdmin = $this->groupManager->isAdmin($user->getUID());
$subAdminManager = $this->groupManager->getSubAdmin();
@ -279,6 +280,10 @@ 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);