From 7153f7fe61df7f4f5f1f7db71fe11111d8d086fa Mon Sep 17 00:00:00 2001 From: nathangray Date: Fri, 23 Aug 2019 14:19:10 -0600 Subject: [PATCH] Api - Add Sharing->get_path() so we can get the path of the share --- api/src/Sharing.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/api/src/Sharing.php b/api/src/Sharing.php index 0729f2bf67..3ad87956dd 100644 --- a/api/src/Sharing.php +++ b/api/src/Sharing.php @@ -119,6 +119,14 @@ class Sharing return $this->share['share_root']; } + /** + * Get share path + */ + public function get_path() + { + return $this->share['share_path']; + } + /** * Get share with email addresses */