diff options
author | blizzz <blizzz@owncloud.com> | 2014-08-21 19:59:31 +0200 |
---|---|---|
committer | blizzz <blizzz@owncloud.com> | 2014-08-21 19:59:31 +0200 |
commit | 52d5429768acdb87b2dc2efedc89eb4ad0d29139 (patch) | |
tree | 6ab5900a70361bbf13633e1b1ca7310e08011ee5 /apps/files | |
parent | 9c980954f4cbb0ff023f5065d64b3eb931914be0 (diff) | |
parent | ab12bd292d1ac44db427332c265fa58bcf4c3cb4 (diff) | |
download | nextcloud-server-52d5429768acdb87b2dc2efedc89eb4ad0d29139.tar.gz nextcloud-server-52d5429768acdb87b2dc2efedc89eb4ad0d29139.zip |
Merge pull request #10522 from owncloud/removeLoadAppScript
Remove loadAppScriptFile
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/appinfo/routes.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/apps/files/appinfo/routes.php b/apps/files/appinfo/routes.php index f3d8e9a4f4d..4d77065a347 100644 --- a/apps/files/appinfo/routes.php +++ b/apps/files/appinfo/routes.php @@ -6,6 +6,33 @@ * See the COPYING-README file. */ +/** @var $this OC\Route\Router */ + +$this->create('files_index', '/') + ->actionInclude('files/index.php'); +$this->create('files_ajax_delete', 'ajax/delete.php') + ->actionInclude('files/ajax/delete.php'); +$this->create('files_ajax_download', 'ajax/download.php') + ->actionInclude('files/ajax/download.php'); +$this->create('files_ajax_getstoragestats', 'ajax/getstoragestats.php') + ->actionInclude('files/ajax/getstoragestats.php'); +$this->create('files_ajax_list', 'ajax/list.php') + ->actionInclude('files/ajax/list.php'); +$this->create('files_ajax_mimeicon', 'ajax/mimeicon.php') + ->actionInclude('files/ajax/mimeicon.php'); +$this->create('files_ajax_move', 'ajax/move.php') + ->actionInclude('files/ajax/move.php'); +$this->create('files_ajax_newfile', 'ajax/newfile.php') + ->actionInclude('files/ajax/newfile.php'); +$this->create('files_ajax_newfolder', 'ajax/newfolder.php') + ->actionInclude('files/ajax/newfolder.php'); +$this->create('files_ajax_rename', 'ajax/rename.php') + ->actionInclude('files/ajax/rename.php'); +$this->create('files_ajax_scan', 'ajax/scan.php') + ->actionInclude('files/ajax/scan.php'); +$this->create('files_ajax_upload', 'ajax/upload.php') + ->actionInclude('files/ajax/upload.php'); + $this->create('download', 'download{file}') ->requirements(array('file' => '.*')) ->actionInclude('files/download.php'); |