diff options
author | Joas Schilling <coding@schilljs.com> | 2020-06-04 10:41:08 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2020-06-04 10:41:08 +0200 |
commit | 7dcb1cdb42fda87d87bd2a0af28ee4a957840ad9 (patch) | |
tree | 070e03187cdf89131bab7d91a5f374a8e0ec2fcb /apps/settings/appinfo | |
parent | 7ef10b2f4851c987029c9fe05062272eebbf9e1b (diff) | |
download | nextcloud-server-7dcb1cdb42fda87d87bd2a0af28ee4a957840ad9.tar.gz nextcloud-server-7dcb1cdb42fda87d87bd2a0af28ee4a957840ad9.zip |
Remove controller and routes which have no UI component anyway
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/settings/appinfo')
-rw-r--r-- | apps/settings/appinfo/routes.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/settings/appinfo/routes.php b/apps/settings/appinfo/routes.php index d8a4b2aabd6..b6d68d76d64 100644 --- a/apps/settings/appinfo/routes.php +++ b/apps/settings/appinfo/routes.php @@ -66,10 +66,6 @@ return [ ['name' => 'CheckSetup#check', 'url' => '/settings/ajax/checksetup', 'verb' => 'GET' , 'root' => ''], ['name' => 'CheckSetup#getFailedIntegrityCheckFiles', 'url' => '/settings/integrity/failed', 'verb' => 'GET' , 'root' => ''], ['name' => 'CheckSetup#rescanFailedIntegrityCheck', 'url' => '/settings/integrity/rescan', 'verb' => 'GET' , 'root' => ''], - ['name' => 'Certificate#addPersonalRootCertificate', 'url' => '/settings/personal/certificate', 'verb' => 'POST' , 'root' => ''], - ['name' => 'Certificate#removePersonalRootCertificate', 'url' => '/settings/personal/certificate/{certificateIdentifier}', 'verb' => 'DELETE' , 'root' => ''], - ['name' => 'Certificate#addSystemRootCertificate', 'url' => '/settings/admin/certificate', 'verb' => 'POST' , 'root' => ''], - ['name' => 'Certificate#removeSystemRootCertificate', 'url' => '/settings/admin/certificate/{certificateIdentifier}', 'verb' => 'DELETE' , 'root' => ''], ['name' => 'PersonalSettings#index', 'url' => '/settings/user/{section}', 'verb' => 'GET', 'defaults' => ['section' => 'personal-info'] , 'root' => ''], ['name' => 'AdminSettings#index', 'url' => '/settings/admin/{section}', 'verb' => 'GET', 'defaults' => ['section' => 'server'] , 'root' => ''], ['name' => 'AdminSettings#form', 'url' => '/settings/admin/{section}', 'verb' => 'GET' , 'root' => ''], |