diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-05-09 17:06:08 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-06-14 10:13:23 +0200 |
commit | d7de35376d7e068abdfb49e8336feab25e313662 (patch) | |
tree | b4d054593e20eb2f5396e06ef1c472337993a7c4 /apps/files_sharing/appinfo/routes.php | |
parent | 0156ef816650ec73d033ebba2107cf237d6301e3 (diff) | |
download | nextcloud-server-d7de35376d7e068abdfb49e8336feab25e313662.tar.gz nextcloud-server-d7de35376d7e068abdfb49e8336feab25e313662.zip |
Add interface for accpeting external shares
Diffstat (limited to 'apps/files_sharing/appinfo/routes.php')
-rw-r--r-- | apps/files_sharing/appinfo/routes.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php index 7c2834dc9c2..2d214c879c4 100644 --- a/apps/files_sharing/appinfo/routes.php +++ b/apps/files_sharing/appinfo/routes.php @@ -5,6 +5,8 @@ $this->create('core_ajax_public_preview', '/publicpreview')->action( require_once __DIR__ . '/../ajax/publicpreview.php'; }); +$this->create('sharing_external_add', '/external')->actionInclude('files_sharing/ajax/external.php'); + // OCS API //TODO: SET: mail notification, waiting for PR #4689 to be accepted |