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 | |
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')
-rw-r--r-- | apps/files_external/lib/Config/ExternalMountPoint.php | 4 | ||||
-rw-r--r-- | apps/files_sharing/lib/SharedMount.php | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/apps/files_external/lib/Config/ExternalMountPoint.php b/apps/files_external/lib/Config/ExternalMountPoint.php index 090e1c77cdf..07475f961f9 100644 --- a/apps/files_external/lib/Config/ExternalMountPoint.php +++ b/apps/files_external/lib/Config/ExternalMountPoint.php @@ -40,4 +40,8 @@ class ExternalMountPoint extends MountPoint { public function getMountType() { return ($this->storageConfig->getAuthMechanism() instanceof SessionCredentials) ? 'external-session' : 'external'; } + + public function getStorageConfig(): StorageConfig { + return $this->storageConfig; + } } 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 |