9e39118b52
when _ is left in namespace and files are named after their classes the autoloader will also find classes in the lib folder of an app its magic!
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('/')));
|