This commit is contained in:
Christien Rioux 2023-09-28 10:06:22 -04:00
parent e5f1619c65
commit 752392c02e
39 changed files with 1025 additions and 435 deletions

View file

@ -65,7 +65,7 @@ class LocalAccounts extends _$LocalAccounts
{required IdentityMaster identityMaster,
required SecretKey identitySecret,
required String name,
required String title,
required String pronouns,
EncryptionKeyType encryptionKeyType = EncryptionKeyType.none,
String encryptionKey = ''}) async {
final localAccounts = state.requireValue;
@ -92,7 +92,7 @@ class LocalAccounts extends _$LocalAccounts
final account = proto.Account()
..profile = (proto.Profile()
..name = name
..title = title)
..pronouns = pronouns)
..contactList = contactList.toProto()
..contactInvitationRecords = contactInvitationRecords.toProto()
..chatList = chatRecords.toProto();