Merge pull request #10522 from owncloud/removeLoadAppScript
Remove loadAppScriptFileremotes/origin/fix-10825
commit
52d5429768
@ -0,0 +1,22 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2014, Lukas Reschke <lukas@owncloud.com> |
||||
* This file is licensed under the Affero General Public License version 3 or later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
/** @var $this \OCP\Route\IRouter */ |
||||
$this->create('user_ldap_ajax_clearMappings', 'ajax/clearMappings.php') |
||||
->actionInclude('user_ldap/ajax/clearMappings.php'); |
||||
$this->create('user_ldap_ajax_deleteConfiguration', 'ajax/deleteConfiguration.php') |
||||
->actionInclude('user_ldap/ajax/deleteConfiguration.php'); |
||||
$this->create('user_ldap_ajax_getConfiguration', 'ajax/getConfiguration.php') |
||||
->actionInclude('user_ldap/ajax/getConfiguration.php'); |
||||
$this->create('user_ldap_ajax_getNewServerConfigPrefix', 'ajax/getNewServerConfigPrefix.php') |
||||
->actionInclude('user_ldap/ajax/getNewServerConfigPrefix.php'); |
||||
$this->create('user_ldap_ajax_setConfiguration', 'ajax/setConfiguration.php') |
||||
->actionInclude('user_ldap/ajax/setConfiguration.php'); |
||||
$this->create('user_ldap_ajax_testConfiguration', 'ajax/testConfiguration.php') |
||||
->actionInclude('user_ldap/ajax/testConfiguration.php'); |
||||
$this->create('user_ldap_ajax_wizard', 'ajax/wizard.php') |
||||
->actionInclude('user_ldap/ajax/wizard.php'); |
||||
Loading…
Reference in new issue