File

src/lib/service/auth/gateway-info.interface.ts

Description

Interface for the gateways capabilities

Index

Properties

Properties

basic
basic: boolean
Type : boolean

Capability of authentication using BASIC authentication

external
external: boolean
Type : boolean

Capability of external identity provider

form
form: boolean
Type : boolean

Capability of authentication using form login

ntlm
ntlm: boolean
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;
}

results matching ""

    No results matching ""