aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/lib/Capabilities.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_trashbin/lib/Capabilities.php')
-rw-r--r--apps/files_trashbin/lib/Capabilities.php38
1 files changed, 38 insertions, 0 deletions
diff --git a/apps/files_trashbin/lib/Capabilities.php b/apps/files_trashbin/lib/Capabilities.php
new file mode 100644
index 00000000000..53c17a475ff
--- /dev/null
+++ b/apps/files_trashbin/lib/Capabilities.php
@@ -0,0 +1,38 @@
+<?php
+
+/**
+ * SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
+ * SPDX-License-Identifier: AGPL-3.0-only
+ */
+namespace OCA\Files_Trashbin;
+
+use OCA\Files_Trashbin\Service\ConfigService;
+use OCP\Capabilities\ICapability;
+
+/**
+ * Class Capabilities
+ *
+ * @package OCA\Files_Trashbin
+ */
+class Capabilities implements ICapability {
+
+ /**
+ * Return this classes capabilities
+ *
+ * @return array{
+ * files: array{
+ * undelete: bool,
+ * delete_from_trash: bool
+ * }
+ * }
+ */
+ public function getCapabilities() {
+ return [
+ 'files' => [
+ 'undelete' => true,
+ 'delete_from_trash' => ConfigService::getDeleteFromTrashEnabled(),
+ ]
+ ];
+ }
+}