Merge pull request #4238 from owncloud/fix_4235

added missing isEmpty ajax file
This commit is contained in:
Morris Jobke 2013-07-30 09:28:39 -07:00
commit dc8132f3a3
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?php
/*
* Check if trash bin is empty to re-enable the deleted files button if needed
*/
OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();
$trashStatus = OCA\Files_Trashbin\Trashbin::isEmpty(OCP\User::getUser());
OCP\JSON::success(array("data" => array("isEmpty" => $trashStatus)));