diff options
author | Robin Appelman <robin@icewind.nl> | 2017-04-26 14:53:11 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-04-28 09:38:21 +0200 |
commit | ab9a36e872173b34be2e678de0c452885e3b48d8 (patch) | |
tree | 76e34c578bfdde6ab46164f9e4227e4fe0cc351e /apps/files_sharing | |
parent | 9da697b11af2928a1470dcedc7ebf77e4a5f0730 (diff) | |
download | nextcloud-server-ab9a36e872173b34be2e678de0c452885e3b48d8.tar.gz nextcloud-server-ab9a36e872173b34be2e678de0c452885e3b48d8.zip |
allow apps to set custom mount types
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/lib/SharedMount.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files_sharing/lib/SharedMount.php b/apps/files_sharing/lib/SharedMount.php index d5ae303390f..b42682ab2a8 100644 --- a/apps/files_sharing/lib/SharedMount.php +++ b/apps/files_sharing/lib/SharedMount.php @@ -258,4 +258,8 @@ class SharedMount extends MountPoint implements MoveableMount { return -1; } } + + public function getMountType() { + return 'shared'; + } } |