copy a list of contacts and then import

This commit is contained in:
2024-08-20 19:39:29 -06:00
parent a5248af4a3
commit 6aef08d7e8
5 changed files with 202 additions and 71 deletions

View File

@@ -4,8 +4,8 @@ export interface Contact {
nextPubKeyHashB64?: string; // base64-encoded SHA256 hash of next public key
profileImageUrl?: string;
publicKeyBase64?: string;
seesMe?: boolean;
registered?: boolean;
seesMe?: boolean; // cached value of the server setting
registered?: boolean; // cached value of the server setting
}
export const ContactSchema = {