diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-08-19 15:26:15 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-08-19 15:26:15 +0200 |
commit | 381340c9b267ee16c2ba4bd461af519ed6c9253c (patch) | |
tree | 6ecd1f333931de2be73893e6f284ad1d1fd26949 /apps/user_ldap | |
parent | b12af9ea7f10454106d77e233b4e2da003754796 (diff) | |
download | nextcloud-server-381340c9b267ee16c2ba4bd461af519ed6c9253c.tar.gz nextcloud-server-381340c9b267ee16c2ba4bd461af519ed6c9253c.zip |
Add routing to user_ldap
Diffstat (limited to 'apps/user_ldap')
-rw-r--r-- | apps/user_ldap/appinfo/routes.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/apps/user_ldap/appinfo/routes.php b/apps/user_ldap/appinfo/routes.php new file mode 100644 index 00000000000..92c8ad1809a --- /dev/null +++ b/apps/user_ldap/appinfo/routes.php @@ -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'); |