Merge pull request #901 from nextcloud/backport-890-quota-unlimited-via-api-9
[stable9] Allow to retrieve the quota itself via the provisioning api
This commit is contained in:
commit
edf08f5eef
|
@ -575,6 +575,7 @@ class Users {
|
|||
'used' => $storage['used'],
|
||||
'total' => $storage['total'],
|
||||
'relative' => $storage['relative'],
|
||||
'quota' => $storage['quota'],
|
||||
];
|
||||
} catch (NotFoundException $ex) {
|
||||
$data = [];
|
||||
|
|
|
@ -53,7 +53,7 @@ interface FileInfo {
|
|||
*/
|
||||
const SPACE_UNKNOWN = -2;
|
||||
/**
|
||||
* @const \OCP\Files\FileInfo::SPACE_UNKNOWN Return value for unlimited space
|
||||
* @const \OCP\Files\FileInfo::SPACE_UNLIMITED Return value for unlimited space
|
||||
* @since 8.0.0
|
||||
*/
|
||||
const SPACE_UNLIMITED = -3;
|
||||
|
|
Loading…
Reference in New Issue