src/lib/service/auth/gateway-info.interface.ts
Interface for the gateways capabilities
Properties |
basic |
basic:
|
Type : boolean
|
Capability of authentication using BASIC authentication |
external |
external:
|
Type : boolean
|
Capability of external identity provider |
form |
form:
|
Type : boolean
|
Capability of authentication using form login |
ntlm |
ntlm:
|
Type : boolean
|
Capability of authentication using NTLM |
export interface GatewayInfo {
/**
* Capability of authentication using NTLM
*/
ntlm: boolean;
/**
* Capability of authentication using form login
*/
form: boolean;
/**
* Capability of authentication using BASIC authentication
*/
basic: boolean;
/**
* Capability of external identity provider
*/
external: boolean;
}