Lines Matching full:ldap
2 * Controller for LDAP
35 const serviceEnabled = data.LDAP.ServiceEnabled ||
37 const ldapServiceEnabled = data.LDAP.ServiceEnabled;
70 getCertificate('/redfish/v1/AccountService/LDAP/Certificates');
89 * Save LDAP settings
91 * LDAP and ActiveDirectory changes can not be sent together when changing
92 * from ActiveDirectory to LDAP
99 enabledServiceType == 'LDAP' ? 'ActiveDirectory' : 'LDAP';
110 toastService.success('Successfully updated LDAP settings.');
115 // settings were saved. Reloading LDAP to make it clear
117 toastService.error('Unable to update all LDAP settings.');
123 toastService.error('Unable to update LDAP settings.');
129 * Sends a request to disable the LDAP Service if the user
148 toastService.success('Successfully disabled LDAP.');
153 toastService.error('Unable to update LDAP settings.');
188 if (ldapProperties.LDAP.ServiceEnabled) {
189 enabledServiceType = 'LDAP';
300 * Returns the payload needed to enable an LDAP Service
301 * @param {string} serviceType - 'LDAP' or 'ActiveDirectory'
319 if (serviceType == 'LDAP') {
321 LDAP: property in AnonymousFunctionbae13d9f0200.createLdapEnableRequest.ldapRequest
334 * Returns the payload needed to disable an LDAP Service
335 * @param {string} serviceType - 'LDAP' or 'ActiveDirectory'
341 if (serviceType == 'LDAP') {
342 ldapRequest = {LDAP: {ServiceEnabled}}; property in AnonymousFunctionbae13d9f0200.createLdapDisableRequest.ldapRequest