MonoCloud Authentication SDK
    Preparing search index...

    Options for configuring group membership validation on access tokens.

    interface IsUserInGroupOptions {
        groupsClaim?: string;
        matchAll?: boolean;
    }
    Index

    Properties

    groupsClaim?: string

    The claim name in the token that contains group memberships.

    'groups'
    
    matchAll?: boolean

    When true, requires the token to contain all specified groups. When false, requires at least one of the specified groups.

    false