2013-08-19 15:24:07 +04:00
|
|
|
<?php
|
2015-02-26 13:37:37 +03:00
|
|
|
/** @var $this \OCP\Route\IRouter */
|
2015-01-15 20:45:24 +03:00
|
|
|
$this->create('core_ajax_trashbin_preview', 'ajax/preview.php')
|
|
|
|
->actionInclude('files_trashbin/ajax/preview.php');
|
2014-08-19 17:24:47 +04:00
|
|
|
$this->create('files_trashbin_ajax_delete', 'ajax/delete.php')
|
|
|
|
->actionInclude('files_trashbin/ajax/delete.php');
|
|
|
|
$this->create('files_trashbin_ajax_isEmpty', 'ajax/isEmpty.php')
|
|
|
|
->actionInclude('files_trashbin/ajax/isEmpty.php');
|
|
|
|
$this->create('files_trashbin_ajax_list', 'ajax/list.php')
|
|
|
|
->actionInclude('files_trashbin/ajax/list.php');
|
|
|
|
$this->create('files_trashbin_ajax_undelete', 'ajax/undelete.php')
|
|
|
|
->actionInclude('files_trashbin/ajax/undelete.php');
|
2014-11-19 01:06:39 +03:00
|
|
|
|
|
|
|
|
|
|
|
// Register with the capabilities API
|
|
|
|
\OC_API::register('get', '/cloud/capabilities', array('OCA\Files_Trashbin\Capabilities', 'getCapabilities'), 'files_trashbin', \OC_API::USER_AUTH);
|