add registration inside contact import, with flag to hide it

This commit is contained in:
2024-04-28 16:18:30 -06:00
parent b32a3d85e9
commit c48b8246f9
8 changed files with 392 additions and 116 deletions

View File

@@ -39,6 +39,8 @@ export interface NotificationIface {
type: string; // "toast" | "info" | "success" | "warning" | "danger"
title: string;
text: string;
onNo?: () => Promise<void>;
onCancel?: (stopAsking: boolean) => Promise<void>;
onNo?: (stopAsking: boolean) => Promise<void>;
onYes?: () => Promise<void>;
promptToStopAsking?: boolean;
}