Skip to content
Snippets Groups Projects
Commit ad202250 authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Add routing to files_sharing

parent f9881abf
Branches
No related tags found
No related merge requests found
...@@ -5,10 +5,14 @@ $this->create('core_ajax_public_preview', '/publicpreview')->action( ...@@ -5,10 +5,14 @@ $this->create('core_ajax_public_preview', '/publicpreview')->action(
require_once __DIR__ . '/../ajax/publicpreview.php'; require_once __DIR__ . '/../ajax/publicpreview.php';
}); });
$this->create('sharing_external_shareinfo', '/shareinfo')->actionInclude('files_sharing/ajax/shareinfo.php'); $this->create('files_sharing_ajax_list', 'ajax/list.php')
$this->create('sharing_external_add', '/external')->actionInclude('files_sharing/ajax/external.php'); ->actionInclude('files_sharing/ajax/list.php');
$this->create('sharing_external_test_remote', '/testremote')->actionInclude('files_sharing/ajax/testremote.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 // OCS API
//TODO: SET: mail notification, waiting for PR #4689 to be accepted //TODO: SET: mail notification, waiting for PR #4689 to be accepted
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment