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

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcos Zuriaga <wolfi@wolfi.es>2016-10-03 23:43:36 +0300
committerMarcos Zuriaga <wolfi@wolfi.es>2016-10-03 23:43:36 +0300
commiteadcdcabb04a7f398c1ba1a3a58f1c3b96c72e12 (patch)
tree285616a3cf2c1c4920b5d9ae26842c1334c2e15f /appinfo
parent1a1cf3e1bc6f9584117b9971e2e7e368bc04da55 (diff)
Api endpoint to get the public link credentials
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index f7642f4b..3922dea9 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -57,6 +57,7 @@ return [
['name' => 'share#deleteShareRequest', 'url' => '/api/v2/sharing/decline/{share_request_id}', 'verb' => 'DELETE'],
['name' => 'share#getVaultItems', 'url' => '/api/v2/sharing/vault/{vault_guid}/get', 'verb' => 'GET'],
['name' => 'share#getRevisions', 'url' => '/api/v2/sharing/revisions/{item_guid}', 'verb' => 'GET'],
+ ['name' => 'share#getCredentialData', 'url' => '/api/v2/sharing/credential/{credential_guid}', 'verb' => 'GET'],
//Internal API
['name' => 'internal#remind', 'url' => '/api/internal/notifications/remind/{credential_id}', 'verb' => 'POST'],