1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 05:45:22 +02:00

fix(LDAP): skip pw validation on edit [EE-616] (#11666)

Co-authored-by: testa113 <testa113>
This commit is contained in:
Ali 2024-05-13 15:08:48 +12:00 committed by GitHub
parent 6a51b6b41e
commit a0ab82b866
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 34 additions and 16 deletions

View file

@ -3,7 +3,7 @@ import { Edit } from 'lucide-react';
import { FeatureId } from '@/react/portainer/feature-flags/enums';
import Openldap from '@/assets/ico/vendor/openldap.svg?c';
const SERVER_TYPES = {
export const SERVER_TYPES = {
CUSTOM: 0,
OPEN_LDAP: 1,
AD: 2,

View file

@ -85,6 +85,10 @@ export enum AuthenticationMethod {
* OAuth represents the OAuth authentication method (authentication against a authorization server)
*/
OAuth,
/**
* AD represents the Active Directory authentication method (authentication against a Microsoft Active Directory server)
*/
AD,
}
/**