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();

View file

@ -159,7 +159,7 @@ class _FetchLocalAccountProviderElement
(origin as FetchLocalAccountProvider).accountMasterRecordKey;
}
String _$localAccountsHash() => r'0ab9eca923cb9e15149f06d9edbb9de0cfed6790';
String _$localAccountsHash() => r'148d98fcd8a61147bb475708d50b9699887c5bec';
/// See also [LocalAccounts].
@ProviderFor(LocalAccounts)