f7cloud_client/apps/survey_client/appinfo/routes.php
2026-03-05 13:40:40 +00:00

17 lines
494 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
return [
'ocs' => [
['name' => 'Endpoint#sendReport', 'url' => '/api/v1/report', 'verb' => 'POST'],
['name' => 'Endpoint#enableMonthly', 'url' => '/api/v1/monthly', 'verb' => 'POST'],
['name' => 'Endpoint#disableMonthly', 'url' => '/api/v1/monthly', 'verb' => 'DELETE'],
],
];