summaryrefslogtreecommitdiffstats
path: root/lib/public/Files/Mount/IMountPoint.php
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2022-02-02 16:12:57 +0100
committerRobin Appelman <robin@icewind.nl>2022-02-23 18:02:33 +0100
commitcfb7923e08ba1902fa5a5f72205cfcbb767b54ad (patch)
tree1641f6d5c32d3e4c822bac90ceab2d6f326797b6 /lib/public/Files/Mount/IMountPoint.php
parent692da9236bde4a0d6d78cf8ee44bd574fec5b623 (diff)
downloadnextcloud-server-cfb7923e08ba1902fa5a5f72205cfcbb767b54ad.tar.gz
nextcloud-server-cfb7923e08ba1902fa5a5f72205cfcbb767b54ad.zip
store mountprovider for each mount in the mounts table
this enabled more fine grained filesystem setup Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/public/Files/Mount/IMountPoint.php')
-rw-r--r--lib/public/Files/Mount/IMountPoint.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/public/Files/Mount/IMountPoint.php b/lib/public/Files/Mount/IMountPoint.php
index 601f293fc16..66144bc4360 100644
--- a/lib/public/Files/Mount/IMountPoint.php
+++ b/lib/public/Files/Mount/IMountPoint.php
@@ -128,4 +128,12 @@ interface IMountPoint {
* @since 12.0.0
*/
public function getMountType();
+
+ /**
+ * Get the class of the mount provider that this mount originates from
+ *
+ * @return string
+ * @since 24.0.0
+ */
+ public function getMountProvider(): string;
}