9 lines
212 B
PHP
9 lines
212 B
PHP
<?php
|
|
|
|
// only need filesystem apps
|
|
$RUNTIME_APPTYPES = array('filesystem');
|
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
// send back json
|
|
OCP\JSON::success(array('data' => \OCA\Files\Helper::buildFileStorageStatistics('/')));
|