summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/appinfo
diff options
context:
space:
mode:
authorblizzz <blizzz@owncloud.com>2014-08-21 19:59:31 +0200
committerblizzz <blizzz@owncloud.com>2014-08-21 19:59:31 +0200
commit52d5429768acdb87b2dc2efedc89eb4ad0d29139 (patch)
tree6ab5900a70361bbf13633e1b1ca7310e08011ee5 /apps/files_sharing/appinfo
parent9c980954f4cbb0ff023f5065d64b3eb931914be0 (diff)
parentab12bd292d1ac44db427332c265fa58bcf4c3cb4 (diff)
downloadnextcloud-server-52d5429768acdb87b2dc2efedc89eb4ad0d29139.tar.gz
nextcloud-server-52d5429768acdb87b2dc2efedc89eb4ad0d29139.zip
Merge pull request #10522 from owncloud/removeLoadAppScript
Remove loadAppScriptFile
Diffstat (limited to 'apps/files_sharing/appinfo')
-rw-r--r--apps/files_sharing/appinfo/routes.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php
index e68b953fc05..d5a48025d4a 100644
--- a/apps/files_sharing/appinfo/routes.php
+++ b/apps/files_sharing/appinfo/routes.php
@@ -5,10 +5,14 @@ $this->create('core_ajax_public_preview', '/publicpreview')->action(
require_once __DIR__ . '/../ajax/publicpreview.php';
});
-$this->create('sharing_external_shareinfo', '/shareinfo')->actionInclude('files_sharing/ajax/shareinfo.php');
-$this->create('sharing_external_add', '/external')->actionInclude('files_sharing/ajax/external.php');
-$this->create('sharing_external_test_remote', '/testremote')->actionInclude('files_sharing/ajax/testremote.php');
-
+$this->create('files_sharing_ajax_list', 'ajax/list.php')
+ ->actionInclude('files_sharing/ajax/list.php');
+$this->create('sharing_external_shareinfo', '/shareinfo')
+ ->actionInclude('files_sharing/ajax/shareinfo.php');
+$this->create('sharing_external_add', '/external')
+ ->actionInclude('files_sharing/ajax/external.php');
+$this->create('sharing_external_test_remote', '/testremote')
+ ->actionInclude('files_sharing/ajax/testremote.php');
// OCS API
//TODO: SET: mail notification, waiting for PR #4689 to be accepted