diff options
author | Robin Appelman <robin@icewind.nl> | 2023-03-31 18:58:59 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2023-04-17 16:23:52 +0200 |
commit | 60cf0c8f5fc5d61f926765f95ff40625349ec787 (patch) | |
tree | 6578bb5416c5c7709100a5c06ed1774d3bf80fe3 /apps/files_sharing/lib | |
parent | e63720b7140d15cd4c0b080c57c226d9a2dda8a6 (diff) | |
download | nextcloud-server-60cf0c8f5fc5d61f926765f95ff40625349ec787.tar.gz nextcloud-server-60cf0c8f5fc5d61f926765f95ff40625349ec787.zip |
add command for getting fileinfo for debugging
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_sharing/lib')
-rw-r--r-- | apps/files_sharing/lib/SharedMount.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/files_sharing/lib/SharedMount.php b/apps/files_sharing/lib/SharedMount.php index 1e0b2d921e3..943f14dc2bd 100644 --- a/apps/files_sharing/lib/SharedMount.php +++ b/apps/files_sharing/lib/SharedMount.php @@ -254,6 +254,13 @@ class SharedMount extends MountPoint implements MoveableMount { } /** + * @return \OCP\Share\IShare[] + */ + public function getGroupedShares(): array { + return $this->groupedShares; + } + + /** * Get the file id of the root of the storage * * @return int |