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-04 15:40:48 +0300
committerMarcos Zuriaga <wolfi@wolfi.es>2016-10-04 15:40:48 +0300
commitbca3cefd0c7f2ef484851ad93ca9a47e096f8abb (patch)
treef92ad79a33f2b40fbb966633c62fa76ae77c6804 /appinfo
parentaf1c38f9c7130521d9ca85dd1c80f9a0bb4f5f18 (diff)
Api endpoint logic to gather the ACL of a credential
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 510e687f..4fadef94 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -59,6 +59,7 @@ return [
['name' => 'share#getPublicCredentialData', 'url' => '/api/v2/sharing/credential/{credential_guid}/public', 'verb' => 'GET'],
['name' => 'share#unshareCredential', 'url' => '/api/v2/sharing/credential/{item_guid}', 'verb' => 'DELETE'],
['name' => 'share#getRevisions', 'url' => '/api/v2/sharing/credential/{item_guid}/revisions', 'verb' => 'GET'],
+ ['name' => 'share#getItemAcl', 'url' => '/api/v2/sharing/credential/{item_guid}/acl', 'verb' => 'GET'],
//Internal API
['name' => 'internal#remind', 'url' => '/api/internal/notifications/remind/{credential_id}', 'verb' => 'POST'],