From 3bec6326f99b17724cb8bddd66fd5c24b474ac8a 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 274977fb5a..02563d6e3e 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 */