Member Junction
    Preparing search index...

    Interface PermissionCheckResult

    Result of a single permission check.

    interface PermissionCheckResult {
        Allowed: boolean;
        DomainName: string;
        MatchedPermission?: NormalizedPermission;
        Reason: string;
    }
    Index

    Properties

    Allowed: boolean

    True if the action is permitted.

    DomainName: string

    Which provider domain made the decision.

    MatchedPermission?: NormalizedPermission

    The matching permission record when one exists.

    Reason: string

    Human-readable explanation of why the decision was made. Useful for debug logs and audit UIs.