diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-04-17 17:47:11 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-04-17 17:47:11 +0200 |
commit | 0d5142be7080fba001d74609676e7e1ddd5b547f (patch) | |
tree | 662375f501297ed2abace99465f1c67a178459b4 /settings/routes.php | |
parent | 42b7dfe9ac84da2e3e2bda732b0e94c68df9d515 (diff) | |
download | nextcloud-server-0d5142be7080fba001d74609676e7e1ddd5b547f.tar.gz nextcloud-server-0d5142be7080fba001d74609676e7e1ddd5b547f.zip |
Show a link to the docs instead of a button on the untrusted domain page
Before there was a button to "quickly" add the untrusted domain to the config. This button often didn't worked, because the generated URL was often untrusted as well. Thus removing it and providing proper docs seems to be the better approach to handle this rare case.
Also the log should not be spammed by messages for the untrusted domain accesses, because they are user related and not necessarily an administrative issue.
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'settings/routes.php')
-rw-r--r-- | settings/routes.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/settings/routes.php b/settings/routes.php index df49f0af859..9a89d7353ef 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -50,7 +50,6 @@ $application->registerRoutes($this, [ ['name' => 'AppSettings#listCategories', 'url' => '/settings/apps/categories', 'verb' => 'GET'], ['name' => 'AppSettings#viewApps', 'url' => '/settings/apps', 'verb' => 'GET'], ['name' => 'AppSettings#listApps', 'url' => '/settings/apps/list', 'verb' => 'GET'], - ['name' => 'SecuritySettings#trustedDomains', 'url' => '/settings/admin/security/trustedDomains', 'verb' => 'POST'], ['name' => 'Users#setDisplayName', 'url' => '/settings/users/{username}/displayName', 'verb' => 'POST'], ['name' => 'Users#setEMailAddress', 'url' => '/settings/users/{id}/mailAddress', 'verb' => 'PUT'], ['name' => 'Users#setUserSettings', 'url' => '/settings/users/{username}/settings', 'verb' => 'PUT'], |