Type Alias gmfAuthenticationConfig

gmfAuthenticationConfig: {
    administratorEmail?: string;
    allowPasswordChange: boolean;
    allowPasswordReset: boolean;
    oidcUserInformationUrl?: string;
}

The Authentication configuration.

Type declaration

  • OptionaladministratorEmail?: string

    The email address of the administrator.

  • allowPasswordChange: boolean

    Whether to show the change password button. Default to true. You can also specify a PasswordValidator object to add constraint on user's new password.

  • allowPasswordReset: boolean

    Whether to show the password forgotten link. Default to true.

  • OptionaloidcUserInformationUrl?: string

    The URL of the OIDC server to allows the user to get his profile information.