Skip to content

Commit

Permalink
PT-6135 (#6)
Browse files Browse the repository at this point in the history
* feat: Change login anonymization
  • Loading branch information
einlied753 authored Jan 10, 2022
1 parent 4f16031 commit 40e026c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public async Task<Contact> AnonymizeContactDataAsync(string id)

foreach (var user in contact.SecurityAccounts)
{
user.UserName = $"{Guid.NewGuid():N}";
user.UserName = $"{_anonymName}_{Guid.NewGuid():N}";
user.Email = GetRandomEmail();
user.CreatedBy = _anonymName;
user.ModifiedBy = _anonymName;
Expand Down

0 comments on commit 40e026c

Please sign in to comment.