Type Alias ClaimsMappingSAML

Mappings from claim name to an array of SAML attribute names that point to locations in the claims from the IdP to retrieve the value from.

type ClaimsMappingSAML = {
    email: string[];
    groups: string[];
    name: string[];
    picture: string[];
    sub: string[];
}
Index

Properties

email: string[]

A list of SAML attributes used to map the user's email.

groups: string[]

A list of SAML attributes used to map the user's groups.

name: string[]

A list of SAML attributes used to map the user's name.

picture: string[]

A list of SAML attributes used to map the user's picture.

sub: string[]

A list of SAML attributes used to map the user's subject.