Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_sharing/appinfo/routes.php')
-rw-r--r--apps/files_sharing/appinfo/routes.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php
index 8915f135ba2..7d1d5c386d8 100644
--- a/apps/files_sharing/appinfo/routes.php
+++ b/apps/files_sharing/appinfo/routes.php
@@ -94,42 +94,42 @@ return [
*/
[
'name' => 'ShareAPI#getShares',
- 'url' => '/api/v1/shares',
+ 'url' => '/api/v1/shares',
'verb' => 'GET',
],
[
'name' => 'ShareAPI#getInheritedShares',
- 'url' => '/api/v1/shares/inherited',
+ 'url' => '/api/v1/shares/inherited',
'verb' => 'GET',
],
[
'name' => 'ShareAPI#createShare',
- 'url' => '/api/v1/shares',
+ 'url' => '/api/v1/shares',
'verb' => 'POST',
],
[
'name' => 'ShareAPI#pendingShares',
- 'url' => '/api/v1/shares/pending',
+ 'url' => '/api/v1/shares/pending',
'verb' => 'GET',
],
[
'name' => 'ShareAPI#getShare',
- 'url' => '/api/v1/shares/{id}',
+ 'url' => '/api/v1/shares/{id}',
'verb' => 'GET',
],
[
'name' => 'ShareAPI#updateShare',
- 'url' => '/api/v1/shares/{id}',
+ 'url' => '/api/v1/shares/{id}',
'verb' => 'PUT',
],
[
'name' => 'ShareAPI#deleteShare',
- 'url' => '/api/v1/shares/{id}',
+ 'url' => '/api/v1/shares/{id}',
'verb' => 'DELETE',
],
[
'name' => 'ShareAPI#acceptShare',
- 'url' => '/api/v1/shares/pending/{id}',
+ 'url' => '/api/v1/shares/pending/{id}',
'verb' => 'POST',
],
/*
@@ -137,12 +137,12 @@ return [
*/
[
'name' => 'DeletedShareAPI#index',
- 'url' => '/api/v1/deletedshares',
+ 'url' => '/api/v1/deletedshares',
'verb' => 'GET',
],
[
'name' => 'DeletedShareAPI#undelete',
- 'url' => '/api/v1/deletedshares/{id}',
+ 'url' => '/api/v1/deletedshares/{id}',
'verb' => 'POST',
],
/*