diff options
author | Juan Pablo Villafáñez <jvillafanez@solidgear.es> | 2016-08-05 10:35:54 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2016-08-19 12:23:41 +0200 |
commit | 5b4e7520794f9ac080c07c13ca6241313545f1b9 (patch) | |
tree | 3d4fea32885daff3c99eb7890a3a6a2a6ebaa71f /apps/user_ldap/js | |
parent | 365797d4b41b6a53431a4667ef547ef913a47221 (diff) | |
download | nextcloud-server-5b4e7520794f9ac080c07c13ca6241313545f1b9.tar.gz nextcloud-server-5b4e7520794f9ac080c07c13ca6241313545f1b9.zip |
Hide the LDAP password in the client side
Connection checks will be done by using the configuration id, with the
stored password. LDAP password won't be sent to the client.
Diffstat (limited to 'apps/user_ldap/js')
-rw-r--r-- | apps/user_ldap/js/wizard/configModel.js | 2 | ||||
-rw-r--r-- | apps/user_ldap/js/wizard/view.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/js/wizard/configModel.js b/apps/user_ldap/js/wizard/configModel.js index c3f1e85b592..3732409c3e1 100644 --- a/apps/user_ldap/js/wizard/configModel.js +++ b/apps/user_ldap/js/wizard/configModel.js @@ -318,7 +318,7 @@ OCA = OCA || {}; */ requestConfigurationTest: function() { var url = OC.generateUrl('apps/user_ldap/ajax/testConfiguration.php'); - var params = OC.buildQueryString(this.configuration); + var params = OC.buildQueryString({ldap_serverconfig_chooser: this.configID}); var model = this; $.post(url, params, function(result) { model._processTestResult(model, result) }); //TODO: make sure only one test is running at a time diff --git a/apps/user_ldap/js/wizard/view.js b/apps/user_ldap/js/wizard/view.js index 9c7e2132dc6..1a89eba3515 100644 --- a/apps/user_ldap/js/wizard/view.js +++ b/apps/user_ldap/js/wizard/view.js @@ -271,7 +271,7 @@ OCA = OCA || {}; * requests a configuration test */ onTestButtonClick: function() { - this.configModel.requestWizard('ldap_action_test_connection', this.configModel.configuration); + this.configModel.requestWizard('ldap_action_test_connection', {ldap_serverconfig_chooser: this.configModel.configID}); }, /** |