aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2017-04-28 12:50:38 +0200
committerGitHub <noreply@github.com>2017-04-28 12:50:38 +0200
commit3e8c5441f74cacdc40ae1489438f5059bcae95bc (patch)
tree2b573cecfbe13556fc2241cd432d50b80662dca3 /lib/private
parentec272f3ac357539ca0ca44c2b05c8771061cd789 (diff)
parentc42278b651df84c79ab23d0cfb07afb311c7c968 (diff)
downloadnextcloud-server-3e8c5441f74cacdc40ae1489438f5059bcae95bc.tar.gz
nextcloud-server-3e8c5441f74cacdc40ae1489438f5059bcae95bc.zip
Merge pull request #4521 from nextcloud/custom-mount-types
allow apps to set custom mount types
Diffstat (limited to 'lib/private')
-rw-r--r--lib/private/Files/Mount/MountPoint.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/private/Files/Mount/MountPoint.php b/lib/private/Files/Mount/MountPoint.php
index 42b79596c98..e7a37e382ff 100644
--- a/lib/private/Files/Mount/MountPoint.php
+++ b/lib/private/Files/Mount/MountPoint.php
@@ -274,4 +274,8 @@ class MountPoint implements IMountPoint {
public function getMountId() {
return $this->mountId;
}
+
+ public function getMountType() {
+ return '';
+ }
}