mirror of
https://github.com/nextcloud/server.git
synced 2025-02-05 17:10:17 +00:00
19 lines
343 B
PHP
19 lines
343 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
// @codeCoverageIgnoreStart
|
|
return [
|
|
'routes' => [
|
|
[
|
|
'name' => 'settings#createCodes',
|
|
'url' => '/settings/create',
|
|
'verb' => 'POST'
|
|
],
|
|
]
|
|
];
|
|
// @codeCoverageIgnoreEnd
|