summaryrefslogtreecommitdiffstats
path: root/settings/controller
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2016-02-09 17:16:43 +0100
committerArthur Schiwon <blizzz@owncloud.com>2016-02-09 17:16:43 +0100
commit3a796d1e1533febc63a2719816815b47f2065e82 (patch)
tree3fdf9dab718f2a186341d875763c6f8fafd5b7db /settings/controller
parent4659bf9b4a880376e690d3ca52e855a861c143f1 (diff)
downloadnextcloud-server-3a796d1e1533febc63a2719816815b47f2065e82.tar.gz
nextcloud-server-3a796d1e1533febc63a2719816815b47f2065e82.zip
Consolidate getQuota and setQuota methods in User instance
Diffstat (limited to 'settings/controller')
-rw-r--r--settings/controller/userscontroller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/controller/userscontroller.php b/settings/controller/userscontroller.php
index 17629fe924f..3e5455751ab 100644
--- a/settings/controller/userscontroller.php
+++ b/settings/controller/userscontroller.php
@@ -184,7 +184,7 @@ class UsersController extends Controller {
'displayname' => $user->getDisplayName(),
'groups' => (empty($userGroups)) ? $this->groupManager->getUserGroupIds($user) : $userGroups,
'subadmin' => $subAdminGroups,
- 'quota' => $this->config->getUserValue($user->getUID(), 'files', 'quota', 'default'),
+ 'quota' => $user->getQuota(),
'storageLocation' => $user->getHome(),
'lastLogin' => $user->getLastLogin() * 1000,
'backend' => $user->getBackendClassName(),