diff options
author | provokateurin <kate@provokateurin.de> | 2024-10-15 10:36:43 +0200 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2024-11-25 09:56:02 +0100 |
commit | ea93dc0c7d09e07f93370a6bdda0bdddf4f05dcb (patch) | |
tree | ffe4c950179b36614acd647e4f2bd773495880a4 /lib/public/Files | |
parent | 6f036a0a8a1099e8dce9e685095d327b078a59f9 (diff) | |
download | nextcloud-server-ea93dc0c7d09e07f93370a6bdda0bdddf4f05dcb.tar.gz nextcloud-server-ea93dc0c7d09e07f93370a6bdda0bdddf4f05dcb.zip |
feat(Files\Mount): Add IShareOwnerlessMount
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'lib/public/Files')
-rw-r--r-- | lib/public/Files/Mount/IShareOwnerlessMount.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/public/Files/Mount/IShareOwnerlessMount.php b/lib/public/Files/Mount/IShareOwnerlessMount.php new file mode 100644 index 00000000000..b73ee620859 --- /dev/null +++ b/lib/public/Files/Mount/IShareOwnerlessMount.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 { +} |