]> source.dussan.org Git - nextcloud-server.git/commitdiff
refactor(user_ldap): Remove Application::registerRoutes() usage refactor/register-routes 49276/head
authorprovokateurin <kate@provokateurin.de>
Thu, 14 Nov 2024 10:28:45 +0000 (11:28 +0100)
committerprovokateurin <kate@provokateurin.de>
Thu, 14 Nov 2024 10:43:46 +0000 (11:43 +0100)
Signed-off-by: provokateurin <kate@provokateurin.de>
apps/user_ldap/appinfo/routes.php
build/psalm-baseline.xml

index fb49c6f54d5f72c5c633ad57fdb1c45a8dee2121..52138060f58900737a1755eb58fea85eb3386ba4 100644 (file)
@@ -2,9 +2,6 @@
 
 declare(strict_types=1);
 
-use OCA\User_LDAP\AppInfo\Application;
-use OCP\AppFramework\App;
-
 /**
  * SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
  * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
@@ -25,23 +22,17 @@ $this->create('user_ldap_ajax_testConfiguration', 'apps/user_ldap/ajax/testConfi
 $this->create('user_ldap_ajax_wizard', 'apps/user_ldap/ajax/wizard.php')
        ->actionInclude('user_ldap/ajax/wizard.php');
 
-$application = new App('user_ldap');
-$application->registerRoutes($this, [
+return [
        'ocs' => [
                ['name' => 'ConfigAPI#create', 'url' => '/api/v1/config', 'verb' => 'POST'],
                ['name' => 'ConfigAPI#show',   'url' => '/api/v1/config/{configID}', 'verb' => 'GET'],
                ['name' => 'ConfigAPI#modify', 'url' => '/api/v1/config/{configID}', 'verb' => 'PUT'],
                ['name' => 'ConfigAPI#delete', 'url' => '/api/v1/config/{configID}', 'verb' => 'DELETE'],
-       ]
-]);
-
-/** @var Application $application */
-$application = \OC::$server->query(Application::class);
-$application->registerRoutes($this, [
+       ],
        'routes' => [
                ['name' => 'renewPassword#tryRenewPassword', 'url' => '/renewpassword', 'verb' => 'POST'],
                ['name' => 'renewPassword#showRenewPasswordForm', 'url' => '/renewpassword/{user}', 'verb' => 'GET'],
                ['name' => 'renewPassword#cancel', 'url' => '/renewpassword/cancel', 'verb' => 'GET'],
                ['name' => 'renewPassword#showLoginFormInvalidPassword', 'url' => '/renewpassword/invalidlogin/{user}', 'verb' => 'GET'],
-       ]
-]);
+       ],
+];
index 824431c46a522fa5f84b43d50158c1f4ffd02baa..73445aadd05bb6904227a9cba741f13da0a132f5 100644 (file)
   </file>
   <file src="apps/files_versions/appinfo/routes.php">
     <InvalidScope>
-      <code><![CDATA[$this]]></code>
       <code><![CDATA[$this->create('files_versions_download', 'apps/files_versions/download.php')]]></code>
     </InvalidScope>
   </file>