Fix CreatedAt Parameter Not Getting Sent With User Requests

This commit is contained in:
Alan Moon 2025-07-17 14:53:57 -07:00
parent ba8b8b8342
commit 24c9ef6061

View File

@ -108,6 +108,7 @@
x.DateOfBirth = user.DateOfBirth; x.DateOfBirth = user.DateOfBirth;
x.CurrencyAmount = user.CurrencyAmount; x.CurrencyAmount = user.CurrencyAmount;
x.Status = user.Status; x.Status = user.Status;
x.CreatedAt = user.CreatedAt;
userInfoList.Add(x); userInfoList.Add(x);
} }
@ -137,6 +138,7 @@
x.DateOfBirth = user.DateOfBirth; x.DateOfBirth = user.DateOfBirth;
x.CreatedAt = user.CreatedAt; x.CreatedAt = user.CreatedAt;
x.CurrencyAmount = user.CurrencyAmount; x.CurrencyAmount = user.CurrencyAmount;
x.CreatedAt = user.CreatedAt;
onlineUsers.Add(x); onlineUsers.Add(x);
} }