mirror of
https://github.com/nextcloud/app_api.git
synced 2025-07-23 04:49:13 +00:00
33 lines
611 B
PHP
33 lines
611 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\AppAPI;
|
|
|
|
use OCA\AppAPI\AppInfo\Application;
|
|
|
|
use OCP\App\IAppManager;
|
|
use OCP\Capabilities\IPublicCapability;
|
|
|
|
class PublicCapabilities implements IPublicCapability {
|
|
|
|
public function __construct(
|
|
private IAppManager $appManager,
|
|
) {
|
|
}
|
|
|
|
public function getCapabilities(): array {
|
|
$capabilities = [
|
|
'version' => $this->appManager->getAppVersion(Application::APP_ID),
|
|
];
|
|
return [
|
|
'app_api' => $capabilities,
|
|
];
|
|
}
|
|
}
|