f7cloud_client/apps/external/lib/Capabilities.php
root 8b6a0139db f7cloud_client
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-17 22:59:26 +00:00

37 lines
630 B
PHP

<?php
/**
* @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com>
* @license GNU AGPL version 3 or any later version
*
* SPDX-FileCopyrightText: 2017 Joas Schilling <coding@schilljs.com>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\External;
use OCP\Capabilities\ICapability;
/**
* Class Capabilities
*
* @package OCA\External
*/
class Capabilities implements ICapability {
/**
* Return this classes capabilities
*/
public function getCapabilities() {
return [
'external' => [
'v1' => [
'sites',
'device',
'groups',
'redirect',
],
],
];
}
}