20 lines
825 B
PHP
20 lines
825 B
PHP
<?php
|
|
/** @var $this \OCP\Route\IRouter */
|
|
$this->create('core_ajax_trashbin_preview', '/preview')->action(
|
|
function() {
|
|
require_once __DIR__ . '/../ajax/preview.php';
|
|
});
|
|
|
|
$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');
|
|
|
|
|
|
// Register with the capabilities API
|
|
\OC_API::register('get', '/cloud/capabilities', array('OCA\Files_Trashbin\Capabilities', 'getCapabilities'), 'files_trashbin', \OC_API::USER_AUTH);
|