summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/appinfo
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-06-04 09:37:04 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2014-06-04 09:37:04 +0200
commit9e31118675d425b99eff340ec7517e478ebc9fcf (patch)
tree729d23e911266a18609641864030bfa1ff58ccd5 /apps/user_ldap/appinfo
parent86623358f03bec638362136ff30720efa7e1be01 (diff)
parent70ae7fa091cb396f82005e17a849d3d0ac8c9751 (diff)
downloadnextcloud-server-9e31118675d425b99eff340ec7517e478ebc9fcf.tar.gz
nextcloud-server-9e31118675d425b99eff340ec7517e478ebc9fcf.zip
Merge pull request #8842 from owncloud/ldap_cli_methods
command line tools to see, modify and test existing LDAP configurations
Diffstat (limited to 'apps/user_ldap/appinfo')
-rw-r--r--apps/user_ldap/appinfo/register_command.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/user_ldap/appinfo/register_command.php b/apps/user_ldap/appinfo/register_command.php
new file mode 100644
index 00000000000..10d992531c4
--- /dev/null
+++ b/apps/user_ldap/appinfo/register_command.php
@@ -0,0 +1,11 @@
+<?php
+/**
+ * Copyright (c) 2014 Arthur Schiwon <blizzz@owncloud.com>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+$application->add(new OCA\user_ldap\Command\ShowConfig());
+$application->add(new OCA\user_ldap\Command\SetConfig());
+$application->add(new OCA\user_ldap\Command\TestConfig());