mirror of
https://github.com/nextcloud/server.git
synced 2025-02-05 17:10:17 +00:00
31c21c7797
Signed-off-by: provokateurin <kate@provokateurin.de>
37 lines
749 B
PHP
37 lines
749 B
PHP
<?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(),
|
|
]
|
|
];
|
|
}
|
|
}
|