Member Junction
    Preparing search index...

    Interface AuthorizationResult

    Result of authorization evaluation

    interface AuthorizationResult {
        Allowed: boolean;
        EvaluatedRules: EvaluatedRule[];
        MatchedAppRule?: ScopeRuleMatch;
        MatchedKeyRule?: ScopeRuleMatch;
        Reason: string;
    }
    Index

    Properties

    Allowed: boolean

    Whether access is allowed

    EvaluatedRules: EvaluatedRule[]

    All rules evaluated during the check

    MatchedAppRule?: ScopeRuleMatch

    The app-level rule that matched (if any)

    MatchedKeyRule?: ScopeRuleMatch

    The key-level rule that matched (if any)

    Reason: string

    Human-readable reason for the decision