diff options
author | Joas Schilling <coding@schilljs.com> | 2020-04-14 18:24:02 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2020-04-18 11:21:28 +0200 |
commit | 708b4991d9039543130b569dd845ed8d8cd1a68c (patch) | |
tree | 9f62b0021496c92448b3697162b8a32ff974a6e5 /apps/user_ldap/appinfo | |
parent | 250467e842a0856a84e9962ed6ef476a2e3ccfef (diff) | |
download | nextcloud-server-708b4991d9039543130b569dd845ed8d8cd1a68c.tar.gz nextcloud-server-708b4991d9039543130b569dd845ed8d8cd1a68c.zip |
Fix legacy routes
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/user_ldap/appinfo')
-rw-r--r-- | apps/user_ldap/appinfo/routes.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/user_ldap/appinfo/routes.php b/apps/user_ldap/appinfo/routes.php index d7955446a47..d3ff28a3f19 100644 --- a/apps/user_ldap/appinfo/routes.php +++ b/apps/user_ldap/appinfo/routes.php @@ -28,19 +28,19 @@ declare(strict_types=1); */ /** @var $this \OCP\Route\IRouter */ -$this->create('user_ldap_ajax_clearMappings', 'ajax/clearMappings.php') +$this->create('user_ldap_ajax_clearMappings', 'apps/user_ldap/ajax/clearMappings.php') ->actionInclude('user_ldap/ajax/clearMappings.php'); -$this->create('user_ldap_ajax_deleteConfiguration', 'ajax/deleteConfiguration.php') +$this->create('user_ldap_ajax_deleteConfiguration', 'apps/user_ldap/ajax/deleteConfiguration.php') ->actionInclude('user_ldap/ajax/deleteConfiguration.php'); -$this->create('user_ldap_ajax_getConfiguration', 'ajax/getConfiguration.php') +$this->create('user_ldap_ajax_getConfiguration', 'apps/user_ldap/ajax/getConfiguration.php') ->actionInclude('user_ldap/ajax/getConfiguration.php'); -$this->create('user_ldap_ajax_getNewServerConfigPrefix', 'ajax/getNewServerConfigPrefix.php') +$this->create('user_ldap_ajax_getNewServerConfigPrefix', 'apps/user_ldap/ajax/getNewServerConfigPrefix.php') ->actionInclude('user_ldap/ajax/getNewServerConfigPrefix.php'); -$this->create('user_ldap_ajax_setConfiguration', 'ajax/setConfiguration.php') +$this->create('user_ldap_ajax_setConfiguration', 'apps/user_ldap/ajax/setConfiguration.php') ->actionInclude('user_ldap/ajax/setConfiguration.php'); -$this->create('user_ldap_ajax_testConfiguration', 'ajax/testConfiguration.php') +$this->create('user_ldap_ajax_testConfiguration', 'apps/user_ldap/ajax/testConfiguration.php') ->actionInclude('user_ldap/ajax/testConfiguration.php'); -$this->create('user_ldap_ajax_wizard', 'ajax/wizard.php') +$this->create('user_ldap_ajax_wizard', 'apps/user_ldap/ajax/wizard.php') ->actionInclude('user_ldap/ajax/wizard.php'); $application = new \OCP\AppFramework\App('user_ldap'); |