Adds CreatorAlias User responses

This commit is contained in:
Jonathan Bourdon
2024-07-20 01:09:45 -04:00
parent 2c88dc05d6
commit 997cbe2ddc
6 changed files with 42 additions and 19 deletions

View File

@@ -38,6 +38,7 @@ public class IdentityService(
var userModel = new UserModel()
{
Id = response.Id,
CreatorAlias = response.CreatorAlias,
UserName = response.UserName ?? string.Empty,
FirstName = response.FirstName,
LastName = response.LastName,
@@ -189,6 +190,7 @@ public class IdentityService(
var userModel = new UserModel
{
Id = response.Id,
CreatorAlias = response.CreatorAlias,
UserName = response.UserName ?? string.Empty,
FirstName = response.FirstName,
LastName = response.LastName,
@@ -238,6 +240,7 @@ public class IdentityService(
var userModel = new UserModel
{
Id = response.Id,
CreatorAlias = response.CreatorAlias,
UserName = response.UserName ?? string.Empty,
FirstName = response.FirstName,
LastName = response.LastName,