diff options
Diffstat (limited to 'apps/files_sharing/appinfo/routes.php')
-rw-r--r-- | apps/files_sharing/appinfo/routes.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php index bd8bfaf38e5..f9e10ebb106 100644 --- a/apps/files_sharing/appinfo/routes.php +++ b/apps/files_sharing/appinfo/routes.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors * SPDX-FileCopyrightText: 2016 ownCloud, Inc. @@ -40,12 +41,6 @@ return [ 'verb' => 'GET', 'root' => '', ], - - [ - 'name' => 'externalShares#testRemote', - 'url' => '/testremote', - 'verb' => 'GET' - ], [ 'name' => 'PublicPreview#getPreview', 'url' => '/publicpreview/{token}', @@ -117,6 +112,11 @@ return [ 'verb' => 'DELETE', ], [ + 'name' => 'ShareAPI#sendShareEmail', + 'url' => '/api/v1/shares/{id}/send-email', + 'verb' => 'POST', + ], + [ 'name' => 'ShareAPI#acceptShare', 'url' => '/api/v1/shares/pending/{id}', 'verb' => 'POST', |