Member Junction
    Preparing search index...

    Per-resource context passed to every adapter call. Kept small and serializable so the generic dialog can stay resource-type-agnostic.

    interface ResourceShareContext {
        CurrentUserID?: string | null;
        OwnerDisplayName?: string | null;
        OwnerUserID?: string | null;
        ResourceID: string;
        ResourceName: string;
    }
    Index

    Properties

    CurrentUserID?: string | null

    UserID of the person currently using the dialog (captured on save as grantor).

    OwnerDisplayName?: string | null

    Owner's display name, shown in the static "Owner" row.

    OwnerUserID?: string | null

    UserID of the resource owner (excluded from the "add people" list).

    ResourceID: string

    Primary key of the resource being shared.

    ResourceName: string

    Display name used in the dialog title (Share "{{ResourceName}}").