Member Junction
    Preparing search index...

    Result returned when the dialog closes

    interface CredentialDialogResult {
        action: "saved" | "deleted" | "cancelled";
        credential?: MJCredentialEntity;
        deletedId?: string;
        success: boolean;
    }
    Index

    Properties

    action: "saved" | "deleted" | "cancelled"

    The action that was taken

    credential?: MJCredentialEntity

    The saved credential entity (if save was successful)

    deletedId?: string

    The ID of the deleted credential (if delete was successful)

    success: boolean

    Whether a credential was saved or deleted