From 3126cf865fc4bf73670db0f0637be61edebdf048 Mon Sep 17 00:00:00 2001 From: brantje Date: Sun, 25 Sep 2016 21:18:58 +0200 Subject: [PATCH] Include sharing keys in response --- lib/Db/Vault.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Db/Vault.php b/lib/Db/Vault.php index 39bcf28c..67dc7833 100644 --- a/lib/Db/Vault.php +++ b/lib/Db/Vault.php @@ -60,6 +60,8 @@ class Vault extends Entity implements \JsonSerializable{ 'guid' => $this->getGuid(), 'name' => $this->getName(), 'created' => $this->getCreated(), + 'private_sharing_key' => $this->getPrivateSharingKey(), + 'public_sharing_key' => $this->getPublicSharingKey(), 'last_access' => $this->getlastAccess(), ]; }