Add user avatar URL

This commit is contained in:
2025-05-13 11:31:03 +07:00
parent 4b0e87d48e
commit 621a5a745e
12 changed files with 196 additions and 31 deletions

View File

@@ -38,6 +38,7 @@ public class UserRepository : IUserRepository
{
var dto = await _userRepository.FindOneAsync(u => u.Name == user.Name);
dto.AgentName = user.AgentName;
dto.AvatarUrl = user.AvatarUrl;
_userRepository.Update(dto);
}
catch (Exception e)