]> source.dussan.org Git - nextcloud-server.git/commitdiff
Add routing to files_trashbin
authorLukas Reschke <lukas@owncloud.com>
Tue, 19 Aug 2014 13:24:47 +0000 (15:24 +0200)
committerLukas Reschke <lukas@owncloud.com>
Tue, 19 Aug 2014 13:24:47 +0000 (15:24 +0200)
apps/files_trashbin/appinfo/routes.php

index 42398a06c8b38c7c48f01b01a4c4c2cc98ab9aaa..da268f4fdfd400aabc59fab433c2cffd182642c6 100644 (file)
@@ -4,3 +4,12 @@ $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');