Browse Source
feat(Files\Mount): Add IShareOwnerlessMount
Signed-off-by: provokateurin <kate@provokateurin.de>
pull/49073/head
provokateurin
1 year ago
Failed to extract signature
3 changed files with
20 additions and
0 deletions
-
lib/composer/composer/autoload_classmap.php
-
lib/composer/composer/autoload_static.php
-
lib/public/Files/Mount/IShareOwnerlessMount.php
|
|
|
@ -409,6 +409,7 @@ return array( |
|
|
|
'OCP\\Files\\Mount\\IMountManager' => $baseDir . '/lib/public/Files/Mount/IMountManager.php', |
|
|
|
'OCP\\Files\\Mount\\IMountPoint' => $baseDir . '/lib/public/Files/Mount/IMountPoint.php', |
|
|
|
'OCP\\Files\\Mount\\IMovableMount' => $baseDir . '/lib/public/Files/Mount/IMovableMount.php', |
|
|
|
'OCP\\Files\\Mount\\IShareOwnerlessMount' => $baseDir . '/lib/public/Files/Mount/IShareOwnerlessMount.php', |
|
|
|
'OCP\\Files\\Mount\\ISystemMountPoint' => $baseDir . '/lib/public/Files/Mount/ISystemMountPoint.php', |
|
|
|
'OCP\\Files\\Node' => $baseDir . '/lib/public/Files/Node.php', |
|
|
|
'OCP\\Files\\NotEnoughSpaceException' => $baseDir . '/lib/public/Files/NotEnoughSpaceException.php', |
|
|
|
|
|
|
|
@ -450,6 +450,7 @@ class ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2 |
|
|
|
'OCP\\Files\\Mount\\IMountManager' => __DIR__ . '/../../..' . '/lib/public/Files/Mount/IMountManager.php', |
|
|
|
'OCP\\Files\\Mount\\IMountPoint' => __DIR__ . '/../../..' . '/lib/public/Files/Mount/IMountPoint.php', |
|
|
|
'OCP\\Files\\Mount\\IMovableMount' => __DIR__ . '/../../..' . '/lib/public/Files/Mount/IMovableMount.php', |
|
|
|
'OCP\\Files\\Mount\\IShareOwnerlessMount' => __DIR__ . '/../../..' . '/lib/public/Files/Mount/IShareOwnerlessMount.php', |
|
|
|
'OCP\\Files\\Mount\\ISystemMountPoint' => __DIR__ . '/../../..' . '/lib/public/Files/Mount/ISystemMountPoint.php', |
|
|
|
'OCP\\Files\\Node' => __DIR__ . '/../../..' . '/lib/public/Files/Node.php', |
|
|
|
'OCP\\Files\\NotEnoughSpaceException' => __DIR__ . '/../../..' . '/lib/public/Files/NotEnoughSpaceException.php', |
|
|
|
|
|
|
|
@ -0,0 +1,18 @@ |
|
|
|
<?php |
|
|
|
|
|
|
|
declare(strict_types=1); |
|
|
|
|
|
|
|
/** |
|
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors |
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later |
|
|
|
*/ |
|
|
|
|
|
|
|
namespace OCP\Files\Mount; |
|
|
|
|
|
|
|
/** |
|
|
|
* Denotes that shares created under this mountpoint will be manageable by everyone with share permission. |
|
|
|
* |
|
|
|
* @since 31.0.0 |
|
|
|
*/ |
|
|
|
interface IShareOwnerlessMount { |
|
|
|
} |