diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-06-29 13:41:11 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-06-29 13:41:11 +0200 |
commit | 5810e7ab87bd4ce69107cdaf2689154e2e59ab5c (patch) | |
tree | 37ced4821300b124363ddba7c4cedec8568eddc8 /lib/private/ocsclient.php | |
parent | aa595392f6f033b0441846a71f5da3c033e15fd5 (diff) | |
parent | 30145c0b52cdc084276e7c682be1ccc4443a6343 (diff) | |
download | nextcloud-server-5810e7ab87bd4ce69107cdaf2689154e2e59ab5c.tar.gz nextcloud-server-5810e7ab87bd4ce69107cdaf2689154e2e59ab5c.zip |
Merge pull request #17050 from owncloud/request-status-from-ocs
Request approved state for disabled apps with ocsid
Diffstat (limited to 'lib/private/ocsclient.php')
-rw-r--r-- | lib/private/ocsclient.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/ocsclient.php b/lib/private/ocsclient.php index 2868b407000..7b5be4ac504 100644 --- a/lib/private/ocsclient.php +++ b/lib/private/ocsclient.php @@ -284,6 +284,7 @@ class OCSClient { $app['description'] = (string)$tmp->description; $app['detailpage'] = (string)$tmp->detailpage; $app['score'] = (int)$tmp->score; + $app['level'] = (int)$tmp->approved; return $app; } |