cdd07b3339
DRYing the code by using \OCA\files\lib\Helper::buildFileStorageStatistics() now returning used space percent on each ajax call
9 lines
216 B
PHP
9 lines
216 B
PHP
<?php
|
|
|
|
// only need filesystem apps
|
|
$RUNTIME_APPTYPES = array('filesystem');
|
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
// send back json
|
|
OCP\JSON::success(array('data' => \OCA\files\lib\Helper::buildFileStorageStatistics('/')));
|