mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
It would not per se be bad to return all of them, however the meta data about the verified state is missing. Since the information may go out to connected clients, those may have wrong trust the returned email addresses. Email verification still works with this change. Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
72 lines
1.5 KiB
PHP
72 lines
1.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2015-2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
return [
|
|
'routes' => [
|
|
[
|
|
'name' => 'RateLimitTest#userAndAnonProtected',
|
|
'url' => '/userAndAnonProtected',
|
|
'verb' => 'GET',
|
|
],
|
|
[
|
|
'name' => 'RateLimitTest#onlyAnonProtected',
|
|
'url' => '/anonProtected',
|
|
'verb' => 'GET',
|
|
],
|
|
],
|
|
|
|
'ocs' => [
|
|
[
|
|
'name' => 'Config#setAppValue',
|
|
'url' => '/api/v1/app/{appid}/{configkey}',
|
|
'verb' => 'POST',
|
|
],
|
|
[
|
|
'name' => 'Config#deleteAppValue',
|
|
'url' => '/api/v1/app/{appid}/{configkey}',
|
|
'verb' => 'DELETE',
|
|
],
|
|
[
|
|
'name' => 'Locking#isLockingEnabled',
|
|
'url' => '/api/v1/lockprovisioning',
|
|
'verb' => 'GET',
|
|
],
|
|
[
|
|
'name' => 'Locking#isLocked',
|
|
'url' => '/api/v1/lockprovisioning/{type}/{user}',
|
|
'verb' => 'GET',
|
|
],
|
|
[
|
|
'name' => 'Locking#acquireLock',
|
|
'url' => '/api/v1/lockprovisioning/{type}/{user}',
|
|
'verb' => 'POST',
|
|
],
|
|
[
|
|
'name' => 'Locking#changeLock',
|
|
'url' => '/api/v1/lockprovisioning/{type}/{user}',
|
|
'verb' => 'PUT',
|
|
],
|
|
[
|
|
'name' => 'Locking#releaseLock',
|
|
'url' => '/api/v1/lockprovisioning/{type}/{user}',
|
|
'verb' => 'DELETE',
|
|
],
|
|
[
|
|
'name' => 'Locking#releaseAll',
|
|
'url' => '/api/v1/lockprovisioning/{type}',
|
|
'verb' => 'DELETE',
|
|
'defaults' => [
|
|
'type' => null
|
|
]
|
|
],
|
|
[
|
|
'name' => 'MailVerificationTest',
|
|
'url' => '/api/v1/mailverification',
|
|
'verb' => 'POST',
|
|
]
|
|
],
|
|
];
|