|
@@ -27,6 +27,7 @@ export default class AdminSecurityContainer extends Container {
|
|
|
serverUrl: '',
|
|
serverUrl: '',
|
|
|
bindMode: 'manager',
|
|
bindMode: 'manager',
|
|
|
bindDN: '',
|
|
bindDN: '',
|
|
|
|
|
+ bindDNPassword: '',
|
|
|
},
|
|
},
|
|
|
};
|
|
};
|
|
|
|
|
|
|
@@ -102,4 +103,13 @@ export default class AdminSecurityContainer extends Container {
|
|
|
this.setState({ newLdapConfig });
|
|
this.setState({ newLdapConfig });
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * Change bind DN password
|
|
|
|
|
+ */
|
|
|
|
|
+ changeBindDNPassword(inputValue) {
|
|
|
|
|
+ const newLdapConfig = this.state.ldapConfig;
|
|
|
|
|
+ newLdapConfig.bindDNPassword = inputValue;
|
|
|
|
|
+ this.setState({ newLdapConfig });
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
}
|
|
}
|