fix: add created_at field on user profile

This commit is contained in:
ericprd
2025-03-17 22:50:37 +08:00
parent efab193793
commit d7fa8496b0
3 changed files with 12 additions and 8 deletions
@@ -25,6 +25,7 @@ func (ur *accessor) GetUserProfile(id string) (*userdomain.UserProfile, error) {
Email: user.Email,
Phone: user.Phone,
Subscribe: user.Subscribe,
CreatedAt: user.CreatedAt,
}
return userProfile, nil