routes.php 637 B

12345678910111213141516
  1. <?php
  2. /** @var $this \OCP\Route\IRouter */
  3. $this->create('core_ajax_trashbin_preview', '/preview')->action(
  4. function() {
  5. require_once __DIR__ . '/../ajax/preview.php';
  6. });
  7. $this->create('files_trashbin_ajax_delete', 'ajax/delete.php')
  8. ->actionInclude('files_trashbin/ajax/delete.php');
  9. $this->create('files_trashbin_ajax_isEmpty', 'ajax/isEmpty.php')
  10. ->actionInclude('files_trashbin/ajax/isEmpty.php');
  11. $this->create('files_trashbin_ajax_list', 'ajax/list.php')
  12. ->actionInclude('files_trashbin/ajax/list.php');
  13. $this->create('files_trashbin_ajax_undelete', 'ajax/undelete.php')
  14. ->actionInclude('files_trashbin/ajax/undelete.php');