diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2013-01-24 14:12:12 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2013-01-24 14:12:12 +0100 |
commit | 6bc72569666ac5fc8063a4b6233fb25a8ec94060 (patch) | |
tree | ffa747c740c0a95f44c51aaa330bf2dea56406c1 /apps/user_ldap/ajax | |
parent | 5b9e181198a61f5c123f5e8d5acec4c30cc8908a (diff) | |
download | nextcloud-server-6bc72569666ac5fc8063a4b6233fb25a8ec94060.tar.gz nextcloud-server-6bc72569666ac5fc8063a4b6233fb25a8ec94060.zip |
LDAP: forgotten file for deleteConfig feature
Diffstat (limited to 'apps/user_ldap/ajax')
-rw-r--r-- | apps/user_ldap/ajax/deleteConfiguration.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/apps/user_ldap/ajax/deleteConfiguration.php b/apps/user_ldap/ajax/deleteConfiguration.php new file mode 100644 index 00000000000..78f88dc942d --- /dev/null +++ b/apps/user_ldap/ajax/deleteConfiguration.php @@ -0,0 +1,34 @@ +<?php + +/** + * ownCloud - user_ldap + * + * @author Arthur Schiwon + * @copyright 2013 Arthur Schiwon blizzz@owncloud.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see <http://www.gnu.org/licenses/>. + * + */ + +// Check user and app status +OCP\JSON::checkAdminUser(); +OCP\JSON::checkAppEnabled('user_ldap'); +OCP\JSON::callCheck(); + +$prefix = $_POST['ldap_serverconfig_chooser']; +if(\OCA\user_ldap\lib\Helper::deleteServerConfiguration($prefix)){ + OCP\JSON::success(); +} else { + OCP\JSON::error('Failed to delete the server configuration'); +}
\ No newline at end of file |