diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2015-09-26 08:59:29 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2015-10-02 07:39:58 +0200 |
commit | 4a620211412f9cf1b2fc9af8fd9edfbb73eb76ae (patch) | |
tree | 41c6122a8cba7980aa61c4fff88d7424e53c3583 | |
parent | f891b91cf8475eee16ab1ca08869430bd2dbe51b (diff) | |
download | nextcloud-server-4a620211412f9cf1b2fc9af8fd9edfbb73eb76ae.tar.gz nextcloud-server-4a620211412f9cf1b2fc9af8fd9edfbb73eb76ae.zip |
Move OCS endpoint ../remote_share to ../pending_shares
-rw-r--r-- | apps/files_sharing/appinfo/routes.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php index 375124cb730..8f7dc72f5d9 100644 --- a/apps/files_sharing/appinfo/routes.php +++ b/apps/files_sharing/appinfo/routes.php @@ -88,17 +88,17 @@ API::register('delete', 'files_sharing'); API::register('get', - '/apps/files_sharing/api/v1/remote_shares', + '/apps/files_sharing/api/v1/pending_shares', array('\OCA\Files_Sharing\API\Remote', 'getOpenShares'), 'files_sharing'); API::register('post', - '/apps/files_sharing/api/v1/remote_shares/{id}', + '/apps/files_sharing/api/v1/pending_shares/{id}', array('\OCA\Files_Sharing\API\Remote', 'acceptShare'), 'files_sharing'); API::register('delete', - '/apps/files_sharing/api/v1/remote_shares/{id}', + '/apps/files_sharing/api/v1/pending_shares/{id}', array('\OCA\Files_Sharing\API\Remote', 'declineShare'), 'files_sharing'); |