Merge pull request #49643 from nextcloud/feat/files_external/enable-ownerless-shares

This commit is contained in:
Benjamin Gaussorgues 2024-12-04 14:58:44 +01:00 committed by GitHub
commit c77243d568
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,7 +8,8 @@ declare(strict_types=1);
namespace OCA\Files_External\Config;
use OCP\Files\Mount\IShareOwnerlessMount;
use OCP\Files\Mount\ISystemMountPoint;
class SystemMountPoint extends ExternalMountPoint implements ISystemMountPoint {
class SystemMountPoint extends ExternalMountPoint implements ISystemMountPoint, IShareOwnerlessMount {
}