diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-08-19 15:24:47 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-08-19 15:24:47 +0200 |
commit | 8524e61fccbeb3f56fb3f444521ff6ba4255df94 (patch) | |
tree | 28520db2928a5fe4b0e57e200b40f8c8471868c1 /apps/files_trashbin | |
parent | 520ee969f2b8e0e1a17d6a985106f568459421c9 (diff) | |
download | nextcloud-server-8524e61fccbeb3f56fb3f444521ff6ba4255df94.tar.gz nextcloud-server-8524e61fccbeb3f56fb3f444521ff6ba4255df94.zip |
Add routing to files_trashbin
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/appinfo/routes.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/files_trashbin/appinfo/routes.php b/apps/files_trashbin/appinfo/routes.php index 42398a06c8b..da268f4fdfd 100644 --- a/apps/files_trashbin/appinfo/routes.php +++ b/apps/files_trashbin/appinfo/routes.php @@ -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'); |