aboutsummaryrefslogtreecommitdiffstats
path: root/settings/controller
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-12-12 16:23:39 +0100
committerVincent Petry <pvince81@owncloud.com>2014-12-12 16:23:39 +0100
commitc7ce3b84f021eb11a1369f43c8055ba95f254443 (patch)
treeafff8c8ca030c11521e41c5d0080c0d1c1744e4f /settings/controller
parent4b57892c4eeeb7bd3c8b1b0465acf032dc84fd19 (diff)
parent04aaa728103c5ff184a89e8b69bca3f196c52224 (diff)
downloadnextcloud-server-c7ce3b84f021eb11a1369f43c8055ba95f254443.tar.gz
nextcloud-server-c7ce3b84f021eb11a1369f43c8055ba95f254443.zip
Merge pull request #12806 from owncloud/display-backend-in-usermgnt
Show user backend in user management
Diffstat (limited to 'settings/controller')
-rw-r--r--settings/controller/userscontroller.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/settings/controller/userscontroller.php b/settings/controller/userscontroller.php
index 589b0a888cb..dd3aa72890e 100644
--- a/settings/controller/userscontroller.php
+++ b/settings/controller/userscontroller.php
@@ -185,7 +185,8 @@ class UsersController extends Controller {
array(
'username' => $username,
'groups' => $this->groupManager->getUserGroupIds($user),
- 'storageLocation' => $user->getHome()
+ 'storageLocation' => $user->getHome(),
+ 'backend' => $user->getBackendClassName()
),
Http::STATUS_CREATED
);