mirror of
https://github.com/nextcloud/server.git
synced 2026-06-13 18:50:47 -04:00
Merge pull request #24514 from nextcloud/backport/24501/stable19
[stable19] set mountid for personal external storage mounts
This commit is contained in:
commit
c4d29cc3f1
2 changed files with 5 additions and 3 deletions
|
|
@ -167,7 +167,8 @@ class ConfigAdapter implements IMountProvider {
|
|||
'/' . $user->getUID() . '/files' . $storageConfig->getMountPoint(),
|
||||
null,
|
||||
$loader,
|
||||
$storageConfig->getMountOptions()
|
||||
$storageConfig->getMountOptions(),
|
||||
$storageConfig->getId()
|
||||
);
|
||||
} else {
|
||||
return new ExternalMountPoint(
|
||||
|
|
|
|||
|
|
@ -55,9 +55,10 @@ class PersonalMount extends ExternalMountPoint implements MoveableMount {
|
|||
$mountpoint,
|
||||
$arguments = null,
|
||||
$loader = null,
|
||||
$mountOptions = null
|
||||
$mountOptions = null,
|
||||
$mountId = null
|
||||
) {
|
||||
parent::__construct($storage, $mountpoint, $arguments, $loader, $mountOptions);
|
||||
parent::__construct($storage, $mountpoint, $arguments, $loader, $mountOptions, $mountId);
|
||||
$this->storagesService = $storagesService;
|
||||
$this->numericStorageId = $storageId;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue